summaryrefslogtreecommitdiff
path: root/internal/api/interfaces.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/interfaces.go')
-rw-r--r--internal/api/interfaces.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/api/interfaces.go b/internal/api/interfaces.go
index 95cc0e7..31da0a8 100644
--- a/internal/api/interfaces.go
+++ b/internal/api/interfaces.go
@@ -19,6 +19,7 @@ type TodoistAPI interface {
type TrelloAPI interface {
GetBoards(ctx context.Context) ([]models.Board, error)
GetCards(ctx context.Context, boardID string) ([]models.Card, error)
+ GetLists(ctx context.Context, boardID string) ([]models.List, error)
GetBoardsWithCards(ctx context.Context) ([]models.Board, error)
CreateCard(ctx context.Context, listID, name, description string, dueDate *time.Time) (*models.Card, error)
UpdateCard(ctx context.Context, cardID string, updates map[string]interface{}) error