Files
EdgeCommon/pkg/nodeconfigs/uam_policy.go

15 lines
300 B
Go
Raw Normal View History

2023-03-17 12:15:30 +08:00
// Copyright 2023 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
//go:build !plus
2022-07-03 22:10:18 +08:00
package nodeconfigs
2023-03-17 12:15:30 +08:00
var DefaultUAMPolicy = &UAMPolicy{}
2022-07-03 22:10:18 +08:00
type UAMPolicy struct {
2023-03-17 12:15:30 +08:00
IsOn bool `yaml:"isOn" json:"isOn"`
2022-07-03 22:10:18 +08:00
}
func (this *UAMPolicy) Init() error {
return nil
}