""" Run the FastAPI app with Uvicorn if the package is run as a module """ import uvicorn from webfinger import app uvicorn.run(app=app, port=7033)