random-apps/shared/constants.go

15 lines
162 B
Go
Raw Normal View History

2025-02-03 15:41:15 +00:00
package shared
import (
"errors"
"image/color"
)
var (
ColorRed = color.NRGBA{R: 0xff, G: 0x0, B: 0x0, A: 255}
)
var (
ErrExitOk = errors.New("exit ok")
)