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

Updated link to play golang and some mistakes

This commit is contained in:
Artjom Nemiro 2017-06-21 16:42:56 +03:00
parent 118698f95a
commit f46dd555a8

View file

@ -18,9 +18,9 @@ Short idea of implementation:
action string
}
// ObjDo implements IObject interface and handels all logic
// ObjDo implements IObject interface and handel's all logic
func (obj *Object) ObjDo(action string) {
// Action behaiver
// Action behavior
fmt.Printf("I can, %s", action)
}
@ -41,4 +41,5 @@ Short idea of implementation:
```
## Usage
For more complex usage, see [proxy/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/q2zFgDK1X9).
More complex usage of proxy as example: User creates "Terminal" authorizes and PROXY send execution command to real Terminal object
See [proxy/main.go](proxy/main.go) or [view in the Playground](https://play.golang.org/p/mnjKCMaOVE).