ICRA/app/__init__.py

10 lines
249 B
Python

"""Application package exposing the PySide6 entry points."""
from __future__ import annotations
from .qt import create_application as create_qt_app, run as run_qt_app
start_app = run_qt_app
__all__ = ["create_qt_app", "run_qt_app", "start_app"]