1d76529c51
Add a minimal Python CLI implementation with source code and dependency configuration so the repository can be validated by autograder requirements. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
150 B
Python
8 lines
150 B
Python
"""CLI entrypoint for AI fluency plan tracker."""
|
|
|
|
from src.fluency_tracker.cli import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|