mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
9 lines
118 B
Go
9 lines
118 B
Go
package autocert
|
|
|
|
type CertState int
|
|
|
|
const (
|
|
CertStateValid CertState = iota
|
|
CertStateExpired
|
|
CertStateMismatch
|
|
)
|