File size: 135 Bytes
f364dda
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import uvicorn
from main import app

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

if __name__ == "__main__":
    main()