mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
19 lines
415 B
Python
19 lines
415 B
Python
"""Refactored Car & Engine example that demostrates inversion of control."""
|
|
|
|
|
|
class Engine(object):
|
|
"""Example engine."""
|
|
|
|
|
|
class Car(object):
|
|
"""Example car."""
|
|
|
|
def __init__(self, engine):
|
|
"""Initializer."""
|
|
self.engine = engine
|
|
|
|
|
|
if __name__ == '__main__':
|
|
engine = Engine() # Application creates Engine's instance
|
|
car = Car(engine) # and inject it into the Car's instance
|