orchid/renewal/local.go
2023-07-10 17:51:14 +01:00

18 lines
263 B
Go

package renewal
import (
"database/sql"
)
// Contains local types for the renewal service
type localCertData struct {
id uint64
dns struct {
name sql.NullString
token sql.NullString
}
notAfter sql.NullTime
domains []string
tempParent uint64
}