Files
HomesteadGateway/controller/structs.go
2025-12-01 13:40:58 +01:00

13 lines
184 B
Go

package controller
import (
"homestead/homestead_gateway/ws"
)
type GatewayController struct {
Websocket *ws.WebsocketGateway
HttpServer HttpGateway
}
type HttpGateway struct{}