Files
EdgeCommon/pkg/nodeconfigs/uam_policy.go

17 lines
320 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-07-03 17:12:00 +08:00
func NewUAMPolicy() *UAMPolicy {
return &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
}