Files
godoxy-yusing/src/autocert/state.go

10 lines
153 B
Go

package autocert
type CertState int
const (
CertStateValid CertState = 0
CertStateExpired CertState = iota
CertStateMismatch CertState = iota
)