9 lines
159 B
Go
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
|
|
}
|