Files
devtrace/src/main.py
7000pctAUTO 431d3e116e
Some checks failed
CI / test (push) Failing after 10s
Add README and main entry point
2026-01-30 09:08:42 +00:00

13 lines
177 B
Python

"""Main entry point for DevTrace."""
from src.cli import main
def entry_point():
"""Entry point for the CLI."""
main()
if __name__ == "__main__":
entry_point()