This commit is contained in:
Miki 2023-12-20 16:49:33 +01:00
parent d9a1837f3b
commit ebd2f05ae2
69 changed files with 2335 additions and 451 deletions

37
backend.old/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"
}