design-patterns/structural/bridge/__init__.py
2020-09-29 22:05:56 +02:00

5 lines
190 B
Python

"""
Lets you split a large class or a set of closely related classes into two
separate hierarchies—abstraction and implementation—which can be developed
independently of each other.
"""