mirror of
https://github.com/1f349/orchid.git
synced 2024-11-09 14:52:58 +00:00
17 lines
240 B
Go
17 lines
240 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
|
|
}
|