mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-25 11:04:01 +03:00
20 lines
362 B
Python
20 lines
362 B
Python
"""Application module."""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from .containers import Container
|
|
from . import endpoints
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
container = Container()
|
|
container.config.giphy.api_key.from_env("GIPHY_API_KEY")
|
|
|
|
app = FastAPI()
|
|
app.container = container
|
|
app.include_router(endpoints.router)
|
|
return app
|
|
|
|
|
|
app = create_app()
|