Implement storage layer for MVP-1 Personal Tracker CLI

Add storage layer with FileStorage, MarkdownReader, and MarkdownWriter classes.
Add data models (Project, Session, Note, Change).
This commit is contained in:
2026-03-23 08:54:00 -03:00
parent 525996f60c
commit 4547c492da
16 changed files with 1013 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
"""Data models for the tracker."""
from .project import Project
from .session import Session
from .note import Note, NoteType
from .change import Change
__all__ = ["Project", "Session", "Note", "NoteType", "Change"]