File size: 175 Bytes
77b2760
f5fbb42
 
 
77b2760
 
 
 
1
2
3
4
5
6
7
8
import uvicorn
from server import app as existing_app

def main():
    return existing_app

if __name__ == "__main__":
    uvicorn.run(existing_app, host="0.0.0.0", port=7860)