1
0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-03-04 14:03:16 +03:00
2020-12-11 13:05:29 +08:00

10 lines
208 B
Go

package inbound
// GetDefaultValue returns default settings of DefaultConfig.
func (c *Config) GetDefaultValue() *DefaultConfig {
if c.GetDefault() == nil {
return &DefaultConfig{}
}
return c.Default
}