mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-26 03:23:58 +03:00
42 lines
1006 B
Python
42 lines
1006 B
Python
from typing_extensions import Annotated
|
|
|
|
from flask import Flask, jsonify, request, current_app, session, g
|
|
from flask import _request_ctx_stack, _app_ctx_stack
|
|
from dependency_injector import containers, providers
|
|
from dependency_injector.wiring import inject, Provide
|
|
|
|
# This is here for testing wiring bypasses these objects without crashing
|
|
request, current_app, session, g # noqa
|
|
_request_ctx_stack, _app_ctx_stack # noqa
|
|
|
|
|
|
class Service:
|
|
def process(self) -> str:
|
|
return "OK"
|
|
|
|
|
|
class Container(containers.DeclarativeContainer):
|
|
|
|
service = providers.Factory(Service)
|
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/")
|
|
@inject
|
|
def index(service: Service = Provide[Container.service]):
|
|
result = service.process()
|
|
return jsonify({"result": result})
|
|
|
|
|
|
@app.route("/annotated")
|
|
@inject
|
|
def annotated(service: Annotated[Service, Provide[Container.service]]):
|
|
result = service.process()
|
|
return jsonify({'result': result})
|
|
|
|
|
|
container = Container()
|
|
container.wire(modules=[__name__])
|