pelican/internal/card/card.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

8 lines
125 B
Go

package card
// Card represents a card on a Kanban board.
type Card struct {
ID int
Title string
Content string
}