1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-04 10:47:20 +00:00
This commit is contained in:
Gerasimos (Makis) Maropoulos
2023-03-11 22:37:55 +02:00
parent 0473648bd6
commit 946ea6787d
59 changed files with 171 additions and 311 deletions

View File

@@ -1 +0,0 @@
https://github.com/kataras/iris/wiki/Routing

View File

@@ -18,8 +18,6 @@ func newApp() *iris.Application {
//
// Third receiver should contains the route's handler(s), they are executed by order.
app.Handle("GET", "/", func(ctx iris.Context) {
// navigate to the https://github.com/kataras/iris/wiki/Routing-context-methods
// to overview all context's method.
ctx.HTML("Hello from " + ctx.Path()) // Hello from /
})

View File

@@ -1,6 +1,6 @@
module github.com/kataras/iris/_examples/routing/party-controller
go 1.19
go 1.20
require github.com/kataras/iris/v12 v12.2.0-beta7

View File

@@ -1,6 +1,6 @@
module github.com/kataras/iris/_examples/routing/subdomains/redirect/multi-instances
go 1.19
go 1.20
require github.com/kataras/iris/v12 v12.2.0-beta7