1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Mark command pattern as implemented

Signed-off-by: kirecek <erikjankovic@gmail.com>
This commit is contained in:
kirecek 2018-03-03 14:41:01 +01:00
parent f978e42036
commit 34ffe46116
No known key found for this signature in database
GPG key ID: 136030F98E9F7A09

View file

@ -37,7 +37,7 @@ 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 | |
| [Command](/behavioral/command.md) | 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 | ✔ |