1
0
mirror of https://github.com/nxshock/gron.git synced 2024-11-27 03:41:00 +05:00
gron/status.go
nxshock 1c00dfabc9 New updates
* Rework job status
* Group WebUI files
* New WebUI details page
2022-03-30 21:06:55 +05:00

11 lines
93 B
Go

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