spacepanel_aggregator/types.go

17 lines
211 B
Go
Raw Normal View History

2020-01-30 17:34:56 +00:00
package spacepanel_aggregator
type State int
const (
Open State = iota
Close
Outdated
Unknown
)
var colors = [4]string{"#00ff00", "#ff0000", "#0000ff", "#000000"}
type Config struct {
Root [][]string
}