mirror of https://github.com/usual2970/certimate
				
				
				
			
		
			
				
	
	
		
			22 lines
		
	
	
		
			496 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			496 B
		
	
	
	
		
			Go
		
	
	
package domain
 | 
						|
 | 
						|
type ApplyConfig struct {
 | 
						|
	Email        string `json:"email"`
 | 
						|
	Access       string `json:"access"`
 | 
						|
	KeyAlgorithm string `json:"keyAlgorithm"`
 | 
						|
	Nameservers  string `json:"nameservers"`
 | 
						|
	Timeout      int64  `json:"timeout"`
 | 
						|
}
 | 
						|
 | 
						|
type DeployConfig struct {
 | 
						|
	Id     string         `json:"id"`
 | 
						|
	Access string         `json:"access"`
 | 
						|
	Type   string         `json:"type"`
 | 
						|
	Config map[string]any `json:"config"`
 | 
						|
}
 | 
						|
 | 
						|
type KV struct {
 | 
						|
	Key   string `json:"key"`
 | 
						|
	Value string `json:"value"`
 | 
						|
}
 |