10 lines
208 B
Go
Raw Normal View History

2020-11-25 19:01:53 +08:00
package inbound
// GetDefaultValue returns default settings of DefaultConfig.
func (c *Config) GetDefaultValue() *DefaultConfig {
if c.GetDefault() == nil {
return &DefaultConfig{}
}
return c.Default
}