Services implemented: - session_service: Active session management (get/set/clear, validation) - project_service: Project CRUD and directory structure - note_service: Note handling and consolidation - heuristics_service: Rule-based suggestions - summary_service: Heuristic summary generation
8 lines
124 B
Python
8 lines
124 B
Python
"""Main CLI entry point."""
|
|
import typer
|
|
|
|
app = typer.Typer(
|
|
name="tracker",
|
|
help="Personal project tracker CLI",
|
|
)
|