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

View File

@@ -9,8 +9,10 @@ type Config struct {
}
type GatewayConfig struct {
HttpPort string `toml:"http_port"`
HttpPort int `toml:"http_port"`
Websocket string `toml:"websocket"`
BodySize int `toml:"body_size"`
QueueSize int `toml:"queue_max"`
}
type LogConfig struct {