mirror of
https://github.com/ovosimpatico/SongQuiz.git
synced 2026-01-15 08:22:56 -03:00
5 lines
137 B
Python
5 lines
137 B
Python
#!/usr/bin/env python3
|
|
import uvicorn
|
|
|
|
if __name__ == "__main__":
|
|
uvicorn.run("app.main:app", host="0.0.0.0", port=8000, reload=True) |