CystronCode's picture
Update server/app.py
f364dda verified
Raw
History Blame Contribute Delete
135 Bytes
import uvicorn
from main import app
def main():
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()