mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-10-30 15:57:35 -04:00
14 lines
200 B
Go
14 lines
200 B
Go
package inbound
|
|
|
|
import ()
|
|
|
|
func (this *Config) GetDefaultValue() *DefaultConfig {
|
|
if this.GetDefault() == nil {
|
|
return &DefaultConfig{
|
|
AlterId: 32,
|
|
Level: 0,
|
|
}
|
|
}
|
|
return this.Default
|
|
}
|