Codebase list golang-github-go-kit-kit / 74ea8d8
Fix grammar in README.md Carl Johnson 8 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
219219 We never use a globally-scoped logger.
220220
221221 We could pass a logger directly into our stringService implementation, but there's a better way.
222 Let's use a **middleware**, also known as decorator.
222 Let's use a **middleware**, also known as a decorator.
223223 A middleware is a function that takes an endpoint and returns an endpoint.
224224
225225 ```go