mirror of https://github.com/usual2970/certimate
				
				
				
			
		
			
				
	
	
		
			16 lines
		
	
	
		
			388 B
		
	
	
	
		
			Go
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			388 B
		
	
	
	
		
			Go
		
	
	
package domain
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/go-acme/lego/v4/registration"
 | 
						|
)
 | 
						|
 | 
						|
const CollectionNameAcmeAccount = "acme_accounts"
 | 
						|
 | 
						|
type AcmeAccount struct {
 | 
						|
	Meta
 | 
						|
	CA       string                 `json:"ca" db:"ca"`
 | 
						|
	Email    string                 `json:"email" db:"email"`
 | 
						|
	Resource *registration.Resource `json:"resource" db:"resource"`
 | 
						|
	Key      string                 `json:"key" db:"key"`
 | 
						|
}
 |