certificates/authority/status/status.go
max furman 4f3e5ef64d wip
2021-05-19 15:20:16 -07:00

11 lines
164 B
Go

package status
// Type is the type for status.
type Type string
var (
// Active active
Active = Type("active")
// Deleted deleted
Deleted = Type("deleted")
)