mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-01-08 05:15:48 +08:00
13 lines
262 B
Go
13 lines
262 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
|
|
package serverconfigs
|
|
|
|
type UAMConfig struct {
|
|
IsPrior bool `yaml:"isPrior" json:"isPrior"`
|
|
IsOn bool `yaml:"isOn" json:"isOn"`
|
|
}
|
|
|
|
func (this *UAMConfig) Init() error {
|
|
return nil
|
|
}
|