mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-23 01:56:58 +03:00
22 lines
443 B
Python
22 lines
443 B
Python
"""Main module."""
|
|
|
|
import sys
|
|
|
|
from dependency_injector.wiring import Provide
|
|
|
|
from .dispatcher import Dispatcher
|
|
from .containers import Container
|
|
|
|
|
|
def main(dispatcher: Dispatcher = Provide[Container.dispatcher]) -> None:
|
|
dispatcher.run()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
container = Container()
|
|
container.config.from_yaml('config.yml')
|
|
container.init_resources()
|
|
container.wire(modules=[sys.modules[__name__]])
|
|
|
|
main()
|