mirror of
https://github.com/yusing/godoxy.git
synced 2026-03-17 23:03:49 +01:00
10 lines
118 B
Go
10 lines
118 B
Go
package autocert
|
|
|
|
type CertState int
|
|
|
|
const (
|
|
CertStateValid CertState = iota
|
|
CertStateExpired
|
|
CertStateMismatch
|
|
)
|