mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-11 07:11:00 +00:00
12 lines
164 B
Go
12 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")
|
|
)
|