17 lines
211 B
Go
17 lines
211 B
Go
|
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
|
||
|
}
|