pelican/internal/board/card.go
Dan Anglin 73547c49c6
All checks were successful
/ test (pull_request) Successful in 32s
/ lint (pull_request) Successful in 36s
refactor: add the Identity type
Add a new Identity type with the required methods so that now the board
types (Card, Status and soon Tag) can automatically satisfy the BoltItem
interface.
2024-01-23 19:42:35 +00:00

10 lines
152 B
Go

package board
// Card represents a card on a Kanban board.
type Card struct {
Identity
Title string
Description string
Created string
}