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

new feature: handle different param types in the exact same path pattern

implements https://github.com/kataras/iris/issues/1315


Former-commit-id: 3e9276f2a95d6fc7c10fbf91186d041dcba72611
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-07-29 23:09:22 +03:00
parent c44fc6e1de
commit 700dcc8005
10 changed files with 168 additions and 28 deletions

View File

@@ -13,7 +13,9 @@ func main() {
ctx.HTML("<h1> Please click <a href='/debug/pprof'>here</a>")
})
app.Any("/debug/pprof/{action:path}", pprof.New())
p := pprof.New()
app.Any("/debug/pprof", p)
app.Any("/debug/pprof/{action:path}", p)
// ___________
app.Run(iris.Addr(":8080"))
}