config.go 200 B

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