You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 04:11:42 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			424 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			424 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package dnsproviders
 | 
						|
 | 
						|
func getDNSCx() Provider {
 | 
						|
	return Provider{
 | 
						|
		Title:                "dns_cx",
 | 
						|
		Type:                 "object",
 | 
						|
		AdditionalProperties: false,
 | 
						|
		Required: []string{
 | 
						|
			"CX_Key",
 | 
						|
			"CX_Secret",
 | 
						|
		},
 | 
						|
		Properties: map[string]providerField{
 | 
						|
			"CX_Key": {
 | 
						|
				Title: "key",
 | 
						|
				Type:  "string",
 | 
						|
			},
 | 
						|
			"CX_Secret": {
 | 
						|
				Title:    "secret",
 | 
						|
				Type:     "string",
 | 
						|
				IsSecret: true,
 | 
						|
			},
 | 
						|
		},
 | 
						|
	}
 | 
						|
}
 |