Create new link for adapter pattern

This commit is contained in:
Lucas Alves 2021-08-20 21:35:48 -03:00
parent 98d2a29c66
commit f158178684
2 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| [Facade](/structural/facade/main.go) | Uses one type as an API to a number of others | ✔ | | [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 | ✔ | | [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/decorator/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 ## Behavioral Patterns

View File