orchid/renewal/local.go

17 lines
240 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-06-29 02:37:00 +01:00
notAfter sql.NullTime
domains []string
2023-06-26 11:56:21 +01:00
}