1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-02 20:56:12 +03:00
This commit is contained in:
Max Funke 2019-12-20 12:45:18 +00:00 committed by GitHub
commit a3df5d2c56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ func LogDecorate(fn Object) Object {
log.Println("Execution is completed with the result", result)
return result
return result
}
}
```