remove leftover code.

This commit is contained in:
Miroslav Šedivý 2021-03-16 13:57:43 +01:00
parent a9aa62f062
commit 0b4c6f50aa

View File

@ -40,7 +40,6 @@ type WebSocketManagerCtx struct {
desktop types.DesktopManager
handler *handler.MessageHandlerCtx
handlers []types.HandlerFunction
shutdown chan bool
}
func (manager *WebSocketManagerCtx) Start() {
@ -130,7 +129,6 @@ func (manager *WebSocketManagerCtx) Start() {
}
func (manager *WebSocketManagerCtx) Shutdown() error {
manager.shutdown <- true
return nil
}