doc: create package & update general TOCs

This commit is contained in:
Ruidy 2020-10-05 18:37:08 +02:00
parent bf1d5dd7f0
commit e7962a80d7
4 changed files with 6 additions and 0 deletions

View file

@ -44,6 +44,7 @@ and divided into three groups.
- [Iterator](behavioral/iterator/README.md)
- [Mediator](behavioral/mediator/README.md)
- [Memento](behavioral/memento/README.md)
- [Observer](behavioral/observer/README.md)
## Resources

View file

@ -9,3 +9,4 @@ Behavioral design patterns are concerned with algorithms and the assignment of r
- [Iterator](iterator/README.md)
- [Mediator](mediator/README.md)
- [Memento](memento/README.md)
- [Observer](observer/README.md)

View file

View file

@ -0,0 +1,4 @@
"""
Lets you define a subscription mechanism to notify multiple objects about any
events that happen to the object theyre observing.
"""