Files
galaxy-game/client/connector/http/http.go
T
2026-03-10 17:01:47 +02:00

10 lines
121 B
Go

package http
type httpConnector struct {
}
func NewHttpConnector() *httpConnector {
h := &httpConnector{}
return h
}