You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,11 @@ A curated collection of idiomatic design & application patterns for Go language.
25
25
26
26
| Pattern | Description | Status |
27
27
|:-------:|:----------- |:------:|
28
-
|[Adapter](/structural/adapter.md)| Adapts otherwise incompatible interfaces to work together by adapting one to the other | ✘ |
29
28
|[Bridge](/structural/bridge.md)| Decouples an interface from its implementation so that the two can vary independently | ✘ |
30
29
|[Composite](/structural/composite.md)| Encapsulates and provides access to a number of different objects | ✘ |
31
30
|[Decorator](/structural/decorator.md)| Adds behavior to an object, statically or dynamically | ✔ |
32
31
|[Facade](/structural/facade.md)| Uses one type as an API to a number of others | ✘ |
33
32
|[Flyweight](/structural/flyweight.md)| Reuses existing instances of objects with similar/identical state to minimize resource usage | ✘ |
34
-
|[Model View Controller](/structural/model_view_controller.md)| Divides an app into three interconnected parts to separate internal representation from presentation to user | ✘ |
35
33
|[Proxy](/structural/proxy.md)| Provides a surrogate for an object to control it's actions | ✘ |
0 commit comments