1
0
mirror of https://github.com/tmrts/go-patterns.git synced 2024-11-22 13:06:09 +03:00

Update README.md

This commit is contained in:
nitesh420 2018-08-20 00:55:17 +05:30 committed by GitHub
parent f9880fb315
commit 559f704422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ A curated collection of idiomatic design & application patterns for Go language.
| [Composite](/structural/composite.md) | Encapsulates and provides access to a number of different objects | ✘ |
| [Decorator](/structural/decorator.md) | Adds behavior to an object, statically or dynamically | ✔ |
| [Facade](/structural/facade.md) | Uses one type as an API to a number of others | ✘ |
| [Flyweight](https://github.com/nitesh420/go-patterns/blob/master/structural/flyweight.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage |✔ |
| [Flyweight](/structural/flyweight.go) | Reuses existing instances of objects with similar/identical state to minimize resource usage |✔ |
| [Proxy](/structural/proxy.md) | Provides a surrogate for an object to control it's actions | ✔ |
## Behavioral Patterns