Files
EdgeCommon/pkg/serverconfigs/uam_config.go

12 lines
213 B
Go
Raw Normal View History

2022-03-29 21:24:36 +08:00
// 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
}