You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
228 B

4 years ago
  1. package models
  2. import "errors"
  3. var ErrInvalidName = errors.New("invalid name")
  4. var ErrBadInput = errors.New("bad input")
  5. var ErrBadColor = errors.New("bad color")
  6. var ErrUnknownColorFormat = errors.New("unknown color format")