pelican/internal/board/errors.go
Dan Anglin 3e5cd598d0
refactor: project restructure
- Introduced internal packages for different components of the kanban
  board.
- Simplified and refactored the database tests based on linting feedback.
- Add tests for the board package.
2021-09-18 01:03:09 +01:00

7 lines
144 B
Go

package board
type statusListEmptyError struct{}
func (e statusListEmptyError) Error() string {
return "the status list must not be empty"
}