mirror of
https://github.com/nxshock/gron.git
synced 2024-11-27 03:41:00 +05:00
11 lines
93 B
Go
11 lines
93 B
Go
|
package main
|
||
|
|
||
|
type Status int
|
||
|
|
||
|
const (
|
||
|
Inactive Status = iota
|
||
|
Running
|
||
|
Error
|
||
|
Restarting
|
||
|
)
|