openreplay/assist-stats/run.py
2023-10-03 17:16:22 +02:00

5 lines
139 B
Python

import uvicorn
from decouple import config
if __name__ == "__main__":
uvicorn.run("main:app", host="0.0.0.0", port=8000, reload=True)