mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-28 20:44:01 +03:00
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()
|