feat: add a option to select a acme user when obtaining a certificate.

This commit is contained in:
Jacky 2024-04-30 11:16:30 +08:00
parent e77d37bbaa
commit f0dcd67004
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D
8 changed files with 186 additions and 2 deletions

View file

@ -27,6 +27,8 @@ type Cert struct {
ChallengeMethod string `json:"challenge_method"`
DnsCredentialID int `json:"dns_credential_id"`
DnsCredential *DnsCredential `json:"dns_credential,omitempty"`
ACMEUserID int `json:"acme_user_id"`
ACMEUser *AcmeUser `json:"acme_user,omitempty"`
KeyType certcrypto.KeyType `json:"key_type"`
Log string `json:"log"`
}