mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-10 04:26:50 +00:00
5 lines
183 B
Python
5 lines
183 B
Python
"""
|
|
Lets you pass requests along a chain of handlers. Upon receiving a request,
|
|
each handler decides either to process the request or to pass it to the next
|
|
handler in the chain.
|
|
"""
|