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

5 lines
227 B
Python

"""
Lets you provide a substitute or placeholder for another object. A proxy
controls access to the original object, allowing you to perform something either
before or after the request gets through to the original object.
"""