design-patterns/behavioral/chain_responsibility/__init__.py

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.
"""