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