mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-24 10:34:01 +03:00
22 lines
351 B
Python
22 lines
351 B
Python
|
"""Application module."""
|
||
|
|
||
|
from fastapi import FastAPI
|
||
|
|
||
|
from .containers import Container
|
||
|
from . import endpoints
|
||
|
|
||
|
|
||
|
def create_app() -> FastAPI:
|
||
|
container = Container()
|
||
|
|
||
|
db = container.db()
|
||
|
db.create_database()
|
||
|
|
||
|
app = FastAPI()
|
||
|
app.container = container
|
||
|
app.include_router(endpoints.router)
|
||
|
return app
|
||
|
|
||
|
|
||
|
app = create_app()
|