working websocket implementation

This commit is contained in:
2025-12-01 10:45:58 +01:00
parent 675e114278
commit 667db6be83
11 changed files with 386 additions and 23 deletions

12
shared/structs.go Normal file
View File

@@ -0,0 +1,12 @@
package shared
import (
"homestead/homestead_gateway/ws"
)
type GatewayController struct {
Websocket *ws.WebsocketGateway
HttpServer HttpGateway
}
type HttpGateway struct{}