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