4
Methods
1
Implementations
0
Required By
01

Methods

  • get
    (note_id: UUID) -> TaskNote | None
    Get note by ID
  • save
    (note: TaskNote) -> None
    Insert a note (notes are immutable)
  • list_by_task
    (task_id: UUID) -> list[TaskNote]
    List all notes for a task, ordered by created_at
  • count_by_task
    (task_id: UUID) -> int
    Count notes for a task
02

Implementations

  • InMemoryTaskNoteRepository
    from todos
    In-memory note storage for testing
03

Required By

Not required by any components