orchid/renewal/local.go

18 lines
263 B
Go
Raw Normal View History

2023-06-26 11:56:21 +01:00
package renewal
2023-06-29 02:37:00 +01:00
import (
"database/sql"
)
2023-06-26 11:56:21 +01:00
// Contains local types for the renewal service
type localCertData struct {
id uint64
dns struct {
2023-06-29 02:37:00 +01:00
name sql.NullString
token sql.NullString
2023-06-26 11:56:21 +01:00
}
2023-07-10 17:51:14 +01:00
notAfter sql.NullTime
domains []string
tempParent uint64
2023-06-26 11:56:21 +01:00
}