From dfeef556dfd3bef3ba614125c32029fabab4d015 Mon Sep 17 00:00:00 2001 From: Tamer Tas Date: Thu, 20 Oct 2016 05:41:56 +0300 Subject: [PATCH] *: trim trivial patterns --- README.md | 2 -- SUMMARY.md | 2 -- 2 files changed, 4 deletions(-) diff --git a/README.md b/README.md index ee7457a..23e1f53 100644 --- a/README.md +++ b/README.md @@ -25,13 +25,11 @@ A curated collection of idiomatic design & application patterns for Go language. | Pattern | Description | Status | |:-------:|:----------- |:------:| -| [Adapter](/structural/adapter.md) | Adapts otherwise incompatible interfaces to work together by adapting one to the other | ✘ | | [Bridge](/structural/bridge.md) | Decouples an interface from its implementation so that the two can vary independently | ✘ | | [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](/structural/flyweight.md) | Reuses existing instances of objects with similar/identical state to minimize resource usage | ✘ | -| [Model View Controller](/structural/model_view_controller.md) | Divides an app into three interconnected parts to separate internal representation from presentation to user | ✘ | | [Proxy](/structural/proxy.md) | Provides a surrogate for an object to control it's actions | ✘ | ## Behavioral Patterns diff --git a/SUMMARY.md b/SUMMARY.md index df351b3..86d2044 100644 --- a/SUMMARY.md +++ b/SUMMARY.md @@ -8,13 +8,11 @@ * [Object Pool](/creational/object-pool.md) * [Singleton](/creational/singleton.md) * [Structural Patterns](/README.md#structural-patterns) - * [Adapter](/structural/adapter.md) * [Bridge](/structural/bridge.md) * [Composite](/structural/composite.md) * [Decorator](/structural/decorator.md) * [Facade](/structural/facade.md) * [Flyweight](/structural/flyweight.md) - * [Model View Controller](/structural/model_view_controller.md) * [Proxy](/structural/proxy.md) * [Behavioral Patterns](/README.md#behavioral-patterns) * [Chain of Responsibility](/behavioral/chain_of_responsibility.md)