Files
cybertron/configs/houston_config.go
2024-09-12 02:59:54 +05:30

18 lines
300 B
Go

package configs
type HoustonClientConfig struct {
baseUrl string
realmId string
}
func NewHoustonConfig() *HoustonClientConfig {
return &HoustonClientConfig{
baseUrl: getString("houston.service.url", true),
}
}
func (p *HoustonClientConfig) GetHoustonBaseUrl() string {
return p.baseUrl
}