Add README and main entry point
Some checks failed
CI / test (push) Failing after 10s

This commit is contained in:
2026-01-30 09:08:42 +00:00
parent 30d51c0836
commit 431d3e116e

12
src/main.py Normal file
View File

@@ -0,0 +1,12 @@
"""Main entry point for DevTrace."""
from src.cli import main
def entry_point():
"""Entry point for the CLI."""
main()
if __name__ == "__main__":
entry_point()