1 2 3 4 5 6 7 8 9
import uvicorn import config from app.main import app if __name__ == "__main__": config.load_config() uvicorn.run(app, port=5252)