mirror of
https://github.com/BoardWare-Genius/jarvis-models.git
synced 2025-12-13 16:53:24 +00:00
5 lines
118 B
Python
5 lines
118 B
Python
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("router:app", host="0.0.0.0", port=8000, log_level="info")
|