mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 10:03:56 +03:00
22 lines
450 B
Python
22 lines
450 B
Python
"""Application module."""
|
|
|
|
from fastapi import FastAPI
|
|
|
|
from .containers import Container
|
|
from . import endpoints
|
|
|
|
|
|
def create_app() -> FastAPI:
|
|
container = Container()
|
|
container.config.from_yaml('config.yml')
|
|
container.config.giphy.api_key.from_env('GIPHY_API_KEY')
|
|
container.wire(modules=[endpoints])
|
|
|
|
app = FastAPI()
|
|
app.container = container
|
|
app.add_api_route('/', endpoints.index)
|
|
return app
|
|
|
|
|
|
app = create_app()
|