design-patterns/behavioral/chain_responsibility/__init__.py
Ruidy 912226c9a9
Chain of Responsibility (#15)
* chore: create behavioral design patterns package

* doc: add chain of responsibility documentation

* doc: add behavioral package table of content

* doc: edit general doc

* add code example

Co-authored-by: Ruidy <r.nemausat@empfohlen.de>
2020-09-30 14:12:08 +02:00

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