1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-17 18:07:01 +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

@@ -22,7 +22,7 @@ func main() {
// are applied to existing routes and future routes.
//
// Remember: the `Use` and `Done` are applied to the current party's and its children,
// so if we used the `app.Use/Don`e before the routes registration
// so if we used the `app.Use/Done` before the routes registration
// it would work like UseGlobal/DoneGlobal in this case, because the `app` is the root party.
//
// See `app.Party/PartyFunc` for more.