mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 18:13:56 +03:00
fe01ad41d9
* Update application-single-container example * Update application-multiple-containers example * Update decoupled-packages example * Update movie lister example * Update CLI tutorial * Update sanic example * Update sanic example with wiring_config * Update fastapi example * Update fastapi-simple example * Update fastapi-sqlalchemy example * Update flask-blueprints example * Update flask example and tutorial * Update aiohttp example and tutorial * Update asyncio-daemon example and tutorial
20 lines
389 B
Python
20 lines
389 B
Python
"""Main module."""
|
|
|
|
from dependency_injector.wiring import inject, Provide
|
|
|
|
from .dispatcher import Dispatcher
|
|
from .containers import Container
|
|
|
|
|
|
@inject
|
|
def main(dispatcher: Dispatcher = Provide[Container.dispatcher]) -> None:
|
|
dispatcher.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
container = Container()
|
|
container.init_resources()
|
|
container.wire(modules=[__name__])
|
|
|
|
main()
|