This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Server/Gateway/app/web.go

17 lines
247 B
Go

package app
import (
"gateway/config"
"gateway/net/http_gateway"
)
func (p *Program) initWebServer(cfg *config.Config) error {
p.webServer = http_gateway.InitRouter(cfg)
return nil
}
func (p *Program) stopWebServer() error {
return nil
}