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