Skip to content

Commit e509950

Browse files
committed
FAQ: update bit on middlewares
1 parent 7183c9f commit e509950

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

_src/faq/index.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,14 +107,9 @@ That is, the business logic should have no knowledge of endpoint- or especially
107107
## Middlewares — What are middlewares, in Go kit?
108108

109109
Go kit tries to enforce a strict separation of concerns through use of the middleware (or decorator) pattern.
110-
Middlewares can wrap endpoints or services to add functionality such as:
111-
112-
- Logging
113-
- Rate limiting
114-
- Load balancing
115-
- Distributed tracing
116-
117-
You can even chain multiple middlewares to an endpoint or service.
110+
Middlewares can wrap endpoints or services to add functionality, such as
111+
logging, rate limiting, load balancing, or distributed tracing.
112+
It's common to chain multiple middlewares around an endpoint or service.
118113

119114
## Design — How is a Go kit microservice modeled?
120115

0 commit comments

Comments
 (0)