 9bdcbe0447
			
		
	
	9bdcbe0447
	
	
	
		
			
			Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Markdown
		
	
	
	
	
	
| # Gorilla WebSocket
 | |
| 
 | |
| [](https://godoc.org/github.com/gorilla/websocket)
 | |
| [](https://circleci.com/gh/gorilla/websocket)
 | |
| 
 | |
| Gorilla WebSocket is a [Go](http://golang.org/) implementation of the
 | |
| [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol.
 | |
| 
 | |
| 
 | |
| ---
 | |
| 
 | |
| ⚠️ **[The Gorilla WebSocket Package is looking for a new maintainer](https://github.com/gorilla/websocket/issues/370)**
 | |
| 
 | |
| ---
 | |
| 
 | |
| ### Documentation
 | |
| 
 | |
| * [API Reference](https://pkg.go.dev/github.com/gorilla/websocket?tab=doc)
 | |
| * [Chat example](https://github.com/gorilla/websocket/tree/master/examples/chat)
 | |
| * [Command example](https://github.com/gorilla/websocket/tree/master/examples/command)
 | |
| * [Client and server example](https://github.com/gorilla/websocket/tree/master/examples/echo)
 | |
| * [File watch example](https://github.com/gorilla/websocket/tree/master/examples/filewatch)
 | |
| 
 | |
| ### Status
 | |
| 
 | |
| The Gorilla WebSocket package provides a complete and tested implementation of
 | |
| the [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol. The
 | |
| package API is stable.
 | |
| 
 | |
| ### Installation
 | |
| 
 | |
|     go get github.com/gorilla/websocket
 | |
| 
 | |
| ### Protocol Compliance
 | |
| 
 | |
| The Gorilla WebSocket package passes the server tests in the [Autobahn Test
 | |
| Suite](https://github.com/crossbario/autobahn-testsuite) using the application in the [examples/autobahn
 | |
| subdirectory](https://github.com/gorilla/websocket/tree/master/examples/autobahn).
 | |
| 
 |