+frontend empty
This commit is contained in:
Miki 2023-12-05 13:48:13 +01:00
parent 54a47c8a95
commit b1745ede2e
59 changed files with 1197 additions and 13 deletions

37
backend/color.go Normal file
View file

@ -0,0 +1,37 @@
package main
type Color int
const (
Gray Color = iota
Black
Blue
Red
Yellow
Green
White
Magenta
)
func (c Color) String() string {
switch c {
case Gray:
return "gray"
case Black:
return "black"
case Blue:
return "blue"
case Red:
return "red"
case Yellow:
return "yellow"
case Green:
return "green"
case White:
return "white"
case Magenta:
return "magenta"
}
return "gray"
}