mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
5 lines
227 B
Python
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.
|
|
"""
|