ICRA/main.py

8 lines
115 B
Python
Raw Permalink Normal View History

"""CLI entry point for the application."""
2025-10-15 18:03:07 +02:00
from app import start_app
2025-10-15 18:03:07 +02:00
if __name__ == "__main__":
start_app()