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

Update proxy doc

This commit is contained in:
Artjom Nemiro 2017-06-15 21:40:10 +03:00
parent 1ca4dff942
commit b5702f7953

View file

@ -18,7 +18,7 @@ Short idea of implementation:
func (obj *Object) ObjDo(action string) {
// Action handler
fmt.Printf("I do, %s", action)
fmt.Printf("I can, %s", action)
}
type ProxyObject struct {
@ -41,4 +41,4 @@ Short idea of implementation:
```
## Usage
For usage, see [observer/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/cr8jEmDmw0).
For usage, see [proxy/main.go](proxy/main.go) or [view in the Playground]().