orchid/renewal/local.go

18 lines
244 B
Go
Raw Normal View History

2023-06-26 11:56:21 +01:00
package renewal
import "time"
// Contains local types for the renewal service
type localCertData struct {
id uint64
dns struct {
name string
token string
}
cert struct {
current uint64
notAfter time.Time
}
domains []string
}