dashboard-nanobot/backend/main.py

9 lines
151 B
Python
Raw Normal View History

2026-03-31 04:31:47 +00:00
from app_factory import create_app
2026-03-01 16:26:03 +00:00
2026-03-31 04:31:47 +00:00
app = create_app()
2026-03-01 16:26:03 +00:00
if __name__ == "__main__":
import uvicorn
2026-03-31 04:31:47 +00:00
uvicorn.run(app, host="0.0.0.0", port=8000)