mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2024-11-22 17:47:02 +03:00
18 lines
358 B
Python
18 lines
358 B
Python
"""The Code."""
|
|
|
|
|
|
class Service(object):
|
|
"""Some "Service"."""
|
|
|
|
|
|
class Client(object):
|
|
"""Some "Client" that uses "Service"."""
|
|
|
|
def __init__(self):
|
|
"""Initializer."""
|
|
self.service = Service() # Service instance is created inside Client
|
|
|
|
|
|
if __name__ == '__main__':
|
|
client = Client() # Application creates Client's instance
|