-
-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathmain.go
More file actions
31 lines (24 loc) · 595 Bytes
/
main.go
File metadata and controls
31 lines (24 loc) · 595 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package main
import (
"net/http"
"github.com/kataras/iris/v12"
)
func main() {
app := iris.New()
irisMiddleware := iris.FromStd(nativeTestMiddleware)
app.Use(irisMiddleware)
// Method GET: http://localhost:8080/
app.Get("/", func(ctx iris.Context) {
ctx.HTML("Home")
})
// Method GET: http://localhost:8080/ok
app.Get("/ok", func(ctx iris.Context) {
ctx.HTML("<b>Hello world!</b>")
})
// http://localhost:8080
// http://localhost:8080/ok
app.Listen(":8080")
}
func nativeTestMiddleware(w http.ResponseWriter, r *http.Request) {
println("Request path: " + r.URL.Path)
}