config.go 189 B

1234567891011
  1. package inbound
  2. func (this *Config) GetDefaultValue() *DefaultConfig {
  3. if this.GetDefault() == nil {
  4. return &DefaultConfig{
  5. AlterId: 32,
  6. Level: 0,
  7. }
  8. }
  9. return this.Default
  10. }