mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 13:39:53 +00:00
18 lines
249 B
Go
18 lines
249 B
Go
package domain
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/go-acme/lego/v4/registration"
|
|
)
|
|
|
|
type AcmeAccount struct {
|
|
Id string
|
|
Ca string
|
|
Email string
|
|
Resource *registration.Resource
|
|
Key string
|
|
Created time.Time
|
|
Updated time.Time
|
|
}
|