design-patterns/behavioral/mediator/__init__.py
2020-10-02 16:57:24 +02:00

5 lines
185 B
Python

"""
lets you reduce chaotic dependencies between objects. The pattern restricts
direct communications between the objects and forces them to collaborate only
via a mediator object.
"""