- Add ProjectContext and DewConfig models to core - Add Ticket model with YAML frontmatter serialisation - Add TicketStore with auto-incrementing 4-digit IDs - Implement create/get/update/delete subcommands under KanbanCommand - Expand tests: ProjectContext, Ticket roundtrip, TicketStore CRUD (19 total) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
13 lines
341 B
Dart
13 lines
341 B
Dart
library;
|
|
|
|
export 'src/dew_kanban_base.dart';
|
|
export 'src/ticket.dart';
|
|
export 'src/ticket_store.dart';
|
|
|
|
import 'package:dew_core/dew_core.dart';
|
|
import 'package:dew_kanban/src/dew_kanban_base.dart';
|
|
|
|
/// Registers all Kanban commands into [registry].
|
|
void registerCommands(CommandRegistry registry) {
|
|
registry.register(KanbanCommand());
|
|
}
|