tmmdev's picture
Update pattern-analysis/run.py
4c7590b verified
raw
history blame contribute delete
122 Bytes
import uvicorn
from app import app
app = app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7865)