1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-27 14:57:05 +00:00

add route-handlers-execution-rules example

Former-commit-id: 95e3dfad33b98d20b761ea1d06dee8df91c3632d
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-06-17 00:02:09 +03:00
parent 7e98555e6b
commit 6557dcf6c5
5 changed files with 78 additions and 40 deletions

View File

@@ -1513,7 +1513,7 @@ func DefaultNext(ctx Context) {
// it should be used inside a middleware.
//
// Note: Custom context should override this method in order to be able to pass its own context.Context implementation.
func (ctx *context) Next() { // or context.Next(ctx)
func (ctx *context) Next() {
Next(ctx)
}