mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-18 05:25:49 +00:00
10 lines
208 B
Go
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
|
||
|
|
}
|