File size: 154 Bytes
93f4eb2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import uvicorn

if __name__ == "__main__":
    uvicorn.run(
        "app.main:app",
        host="127.0.0.1",
        port=8002,
        reload=True
    )