mirror of
https://github.com/1f349/orchid.git
synced 2024-11-12 23:21:38 +00:00
19 lines
274 B
Go
19 lines
274 B
Go
package renewal
|
|
|
|
import (
|
|
"database/sql"
|
|
"time"
|
|
)
|
|
|
|
// Contains local types for the renewal service
|
|
type localCertData struct {
|
|
id int64
|
|
dns struct {
|
|
name sql.NullString
|
|
token sql.NullString
|
|
}
|
|
notAfter time.Time
|
|
domains []string
|
|
tempParent sql.NullInt64
|
|
}
|