mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
20 lines
510 B
Python
20 lines
510 B
Python
"""Example of inversion of control container for Car & Engine example."""
|
|
|
|
from dependency_injector import containers
|
|
from dependency_injector import providers
|
|
|
|
from car_engine_ioc import Car
|
|
from car_engine_ioc import Engine
|
|
|
|
|
|
class Components(containers.DeclarativeContainer):
|
|
"""IoC container of component providers."""
|
|
|
|
engine = providers.Factory(Engine)
|
|
|
|
car = providers.Factory(Car, engine=engine)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
car = Components.car() # Application creates Car's instance
|