mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 23:02:53 +00:00
18 lines
263 B
Go
18 lines
263 B
Go
package renewal
|
|
|
|
import (
|
|
"database/sql"
|
|
)
|
|
|
|
// Contains local types for the renewal service
|
|
type localCertData struct {
|
|
id uint64
|
|
dns struct {
|
|
name sql.NullString
|
|
token sql.NullString
|
|
}
|
|
notAfter sql.NullTime
|
|
domains []string
|
|
tempParent uint64
|
|
}
|