This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/nodeconfigs/uam_policy.go
T
2023-07-03 17:12:00 +08:00

17 lines
320 B
Go

// Copyright 2023 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
//go:build !plus
package nodeconfigs
func NewUAMPolicy() *UAMPolicy {
return &UAMPolicy{}
}
type UAMPolicy struct {
IsOn bool `yaml:"isOn" json:"isOn"`
}
func (this *UAMPolicy) Init() error {
return nil
}