design-patterns/README.md
Ruidy 18dc62563c
Proxy (#13)
* doc: add proxy README documentation

* doc: edit general README files

* add proxy code example

Co-authored-by: Ruidy <r.nemausat@empfohlen.de>
2020-09-29 21:08:07 +02:00

20 lines
774 B
Markdown

# Design Patterns in Python
- [Link](https://refactoring.guru/design-patterns/catalog)
## Table of Content
- [Creational Patterns](creational/README.md)
- [Factory Method](creational/factory-method/README.md)
- [Abstract Factory](creational/abstract-factory/README.md)
- [Builder](creational/builder/README.md)
- [Prototype](creational/prototype/README.md)
- [Singleton](creational/singleton/README.md)
- [Structural Patterns](structural/README.md)
- [Adapter](structural/adapter/README.md)
- [Bridge](structural/bridge/README.md)
- [Composite](structural/composite/README.md)
- [Decorator](structural/decorator/README.md)
- [Facade](structural/facade/README.md)
- [Flyweight](structural/flyweight/README.md)
- [Proxy](structural/proxy/README.md)