mirror of
https://github.com/tmrts/go-patterns.git
synced 2025-04-04 05:33:33 +03:00
Add decorator pattern
This commit is contained in:
parent
aeca31fe3d
commit
7680a25f35
1 changed files with 24 additions and 0 deletions
24
decorator.go
Normal file
24
decorator.go
Normal file
|
@ -0,0 +1,24 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"log"
|
||||
)
|
||||
|
||||
func LogDecorate(fn func(s string)) func(s string) {
|
||||
return func(s string) {
|
||||
log.Println("Starting the execution with the argument", s)
|
||||
fn(s)
|
||||
log.Println("Execution is completed.")
|
||||
}
|
||||
}
|
||||
|
||||
func Function(s string) {
|
||||
fmt.Println(s)
|
||||
}
|
||||
|
||||
func main() {
|
||||
f := LogDecorate(Function)
|
||||
|
||||
f("Hello Decorator")
|
||||
}
|
Loading…
Add table
Reference in a new issue