Files
giredore/internal/structs/status.go
T

9 lines
115 B
Go
Raw Normal View History

2019-10-07 18:21:26 +05:00
package structs
const (
StatusFailure Status = "failure"
StatusSuccess Status = "success"
)
type Status string