mirror of
https://github.com/rjNemo/design-patterns
synced 2026-06-06 02:26:40 +00:00
doc: create package & update general TOCs
This commit is contained in:
parent
bf1d5dd7f0
commit
e7962a80d7
4 changed files with 6 additions and 0 deletions
|
|
@ -44,6 +44,7 @@ and divided into three groups.
|
||||||
- [Iterator](behavioral/iterator/README.md)
|
- [Iterator](behavioral/iterator/README.md)
|
||||||
- [Mediator](behavioral/mediator/README.md)
|
- [Mediator](behavioral/mediator/README.md)
|
||||||
- [Memento](behavioral/memento/README.md)
|
- [Memento](behavioral/memento/README.md)
|
||||||
|
- [Observer](behavioral/observer/README.md)
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,3 +9,4 @@ Behavioral design patterns are concerned with algorithms and the assignment of r
|
||||||
- [Iterator](iterator/README.md)
|
- [Iterator](iterator/README.md)
|
||||||
- [Mediator](mediator/README.md)
|
- [Mediator](mediator/README.md)
|
||||||
- [Memento](memento/README.md)
|
- [Memento](memento/README.md)
|
||||||
|
- [Observer](observer/README.md)
|
||||||
|
|
|
||||||
0
behavioral/observer/README.md
Normal file
0
behavioral/observer/README.md
Normal file
4
behavioral/observer/__init__.py
Normal file
4
behavioral/observer/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
"""
|
||||||
|
Lets you define a subscription mechanism to notify multiple objects about any
|
||||||
|
events that happen to the object they’re observing.
|
||||||
|
"""
|
||||||
Loading…
Reference in a new issue