mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
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"`
|
|
}
|