This commit is contained in:
aozhiwei 2024-08-30 17:21:09 +08:00
parent 13f4c0cca4
commit 8dde79e9d0

View File

@ -3,10 +3,12 @@ package mt
import (
"f5"
"main/mtb"
"net/url"
)
type Config struct {
mtb.Config
redirectHost string
}
type ConfigTable struct {
@ -14,6 +16,14 @@ type ConfigTable struct {
selfConf *Config
}
func (this *Config) Init0() {
u, err := url.Parse(this.GetRedirectUrl())
if err != nil {
panic(err)
}
this.redirectHost = u.Host
}
func (this *ConfigTable) GetGameSApiUrl() string {
return this.selfConf.GetGamesapiUrl()
}
@ -23,7 +33,7 @@ func (this *ConfigTable) GetRedirectUrl() string {
}
func (this *ConfigTable) GetRedirectHost() string {
return this.selfConf.GetRedirectUrl()
return this.selfConf.redirectHost
}
func (this *ConfigTable) GetSecretKey() string {