1
0
mirror of https://github.com/nxshock/gron.git synced 2024-11-27 03:41:00 +05:00
gron/status.go

11 lines
93 B
Go
Raw Normal View History

package main
type Status int
const (
Inactive Status = iota
Running
Error
Restarting
)