mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			528 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			528 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
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
 | 
						|
}
 |