Files
EdgeCommon/pkg/serverconfigs/http_auth_policy_ref.go

21 lines
527 B
Go
Raw Permalink Normal View History

2024-05-17 18:28:59 +08:00
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
2021-06-17 21:18:05 +08:00
package serverconfigs
// HTTPAuthPolicyRef 认证策略引用
type HTTPAuthPolicyRef struct {
IsOn bool `yaml:"isOn" json:"isOn"`
AuthPolicyId int64 `yaml:"authPolicyId" json:"authPolicyId"`
AuthPolicy *HTTPAuthPolicy `yaml:"authPolicy" json:"authPolicy"`
}
func (this *HTTPAuthPolicyRef) Init() error {
if this.AuthPolicy != nil {
err := this.AuthPolicy.Init()
if err != nil {
return err
}
}
return nil
}