Gradii's picture
startuping cleanup
d7322bf
Raw
History Blame
113 Bytes
import uvicorn
from app import app
if __name__ == "__main__":
uvicorn.run(app, host="127.0.0.1", port=8000)