Files
EdgeCommon/pkg/serverconfigs/uam_config.go
2022-07-03 22:10:18 +08:00

14 lines
285 B
Go

// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package serverconfigs
// UAMConfig UAM配置
type UAMConfig struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"`
IsOn bool `yaml:"isOn" json:"isOn"`
}
func (this *UAMConfig) Init() error {
return nil
}