mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-13 07:10:28 +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")
|
||
|
)
|