import uvicorn from app.config import config from app import app if __name__ == '__main__': uvicorn.run(app, host=config.host, port=config.port)