Compare commits

...

2 Commits

Author SHA1 Message Date
Edward
dca2a0ba87
Merge pull request #10 from Ameausoone/patch-1
docs(root/README): fix link to proxy readme file
2023-05-02 02:08:44 +08:00
Antoine Méausoone
a5f0c8dce2
docs(root/README): fix link to proxy readme file 2022-10-29 10:31:38 +02:00

View File

@ -42,7 +42,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| [Decorator](/structural/decorator/decorator.md) | Adds behavior to an object, statically or dynamically | ✔ |
| [Facade](/structural/facade/main.go) | Uses one type as an API to a number of others | ✔ |
| [Flyweight](/structural/flyweight/main.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage | ✔ |
| [Proxy](/structural/decorator/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ |
| [Proxy](/structural/proxy/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ |
| [Adapter](/structural/adapter/adapter.md) | Provides a surrogate for an object to control it's actions | ✔ |
## Behavioral Patterns