We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c84a152 + da6931b commit 3e6abc6Copy full SHA for 3e6abc6
routing_packager_app/__init__.py
@@ -19,6 +19,7 @@ def create_app(lifespan: Optional[Lifespan[FastAPI]]):
19
description = fh.read()
20
21
BASE_DIR = Path(__file__).resolve().parent
22
+ app = FastAPI(title="Routing Graph Packager App", description=description, lifespan=lifespan)
23
app.mount("/static", StaticFiles(directory=f"{BASE_DIR}/static"), name="static")
24
25
register_middlewares(app)
0 commit comments