added __main__.py for python -m computer.ui shorthand

This commit is contained in:
Dillon DuPont
2025-06-17 12:30:52 -04:00
parent a5b2f15579
commit 91ebb81d73

View File

@@ -0,0 +1,15 @@
"""
Main entry point for computer.ui module.
This allows running the computer UI with:
python -m computer.ui
Instead of:
python -m computer.ui.gradio.app
"""
from .gradio.app import create_gradio_ui
if __name__ == "__main__":
app = create_gradio_ui()
app.launch()