GoDoxy/internal/autocert/state.go

9 lines
118 B
Go

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