orchid/renewal/local.go

19 lines
274 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"
"time"
2023-06-29 02:37:00 +01:00
)
2023-06-26 11:56:21 +01:00
// Contains local types for the renewal service
type localCertData struct {
id int64
2023-06-26 11:56:21 +01:00
dns struct {
2023-06-29 02:37:00 +01:00
name sql.NullString
token sql.NullString
2023-06-26 11:56:21 +01:00
}
notAfter time.Time
2023-07-10 17:51:14 +01:00
domains []string
tempParent sql.NullInt64
2023-06-26 11:56:21 +01:00
}