2023-06-26 11:56:21 +01:00
|
|
|
package renewal
|
|
|
|
|
2023-06-29 02:37:00 +01:00
|
|
|
import (
|
|
|
|
"database/sql"
|
2024-03-09 00:31:52 +00:00
|
|
|
"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 {
|
2024-03-09 00:31:52 +00:00
|
|
|
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
|
|
|
}
|
2024-03-09 00:31:52 +00:00
|
|
|
notAfter time.Time
|
2023-07-10 17:51:14 +01:00
|
|
|
domains []string
|
2024-03-09 00:31:52 +00:00
|
|
|
tempParent sql.NullInt64
|
2023-06-26 11:56:21 +01:00
|
|
|
}
|