ICRA/main.py

8 lines
115 B
Python

"""CLI entry point for the application."""
from app import start_app
if __name__ == "__main__":
start_app()