File size: 150 Bytes
4dc3c1d
5322eaf
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from backend.app.main import app
import uvicorn


def main():
    uvicorn.run(app, host="0.0.0.0", port=7860)


if __name__ == "__main__":
    main()