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

implement a dynamic router handler for #2167

This commit is contained in:
Gerasimos (Makis) Maropoulos
2023-08-04 17:59:00 +03:00
parent 72f9d4ba5c
commit 9d538eabb0
6 changed files with 150 additions and 11 deletions

View File

@@ -41,5 +41,5 @@ func main() {
ctx.Exec("GET", "/invisible/iris")
})
app.Listen(":8080")
app.Listen(":8080", iris.WithDynamicHandler)
}