Updated Writing a Plugin: HTTP Middleware (markdown)

Arne Hormann 2016-07-21 16:58:31 +02:00
parent 50539d1dec
commit 99f13c2187

@ -29,7 +29,7 @@ Handlers are usually a struct with at least one field, the next Handler in the c
```go
type MyHandler struct {
Next middleware.Handler
Next httpserver.Handler
}
```