From 644fd81d3e08131617d3a0af4c68c527d316f50a Mon Sep 17 00:00:00 2001 From: nynicg Date: Thu, 2 May 2019 09:40:20 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f6a8f06..1d4b001 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,8 @@ A curated collection of idiomatic design & application patterns for Go language. | Pattern | Description | Status | |:-------:|:----------- |:------:| -| [Chain of Responsibility](/behavioral/chain_of_responsibility.md) | Avoids coupling a sender to receiver by giving more than object a chance to handle the request | ✔ | -| [Command](/behavioral/command.md) | Bundles a command and arguments to call later | ✔ | +| [Chain of Responsibility](/behavioral/chain_of_responsibility/main.go) | Avoids coupling a sender to receiver by giving more than object a chance to handle the request | ✔ | +| [Command](/behavioral/command/main.go) | Bundles a command and arguments to call later | ✔ | | [Mediator](/behavioral/mediator.md) | Connects objects and acts as a proxy | ✘ | | [Memento](/behavioral/memento.md) | Generate an opaque token that can be used to go back to a previous state | ✘ | | [Observer](/behavioral/observer.md) | Provide a callback for notification of events/changes to data | ✔ |