minimcd/state.go

19 lines
180 B
Go

package main
type CntEvent int
const (
INCREASE CntEvent = 1
DECREASE CntEvent = -1
)
type MCState int
const (
STOPPED MCState = iota
RUNNING
BOOTING
WAITING
STOPPING
)