We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee039e7 commit 1f95e93Copy full SHA for 1f95e93
README.md
@@ -171,6 +171,15 @@ func Home(c *MyContext) {
171
}
172
```
173
174
+Misc
175
+-----
176
+```go
177
+...
178
+// can register multiple handlers, the last is considered the last in the chain and others
179
+// considered middleware, but just for this route and not added to middleware like l.Use() does.
180
+l.Get(/"home", AdditionalHandler, HomeHandler)
181
+```
182
+
183
Middleware
184
-----------
185
There are some pre-defined middlewares within the middleware folder; NOTE: that the middleware inside will
0 commit comments