hannan2859r's picture
Update server/app.py
2b6ba3f verified
raw
history blame contribute delete
134 Bytes
from app import app
import uvicorn
def main():
uvicorn.run(app, host="0.0.0.0", port=7860)
if __name__ == "__main__":
main()