Files
kami_boss/config/config.go
2023-11-20 15:47:51 +08:00

9 lines
159 B
Go

package config
import "github.com/beego/beego/v2/server/web"
func GetGatewayHost() string {
host, _ := web.AppConfig.String("gateway::host")
return host
}