mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
0d26f24eb7
Former-commit-id: d20afb2e899aee658a8e0ed1693357798df93462
43 lines
1.0 KiB
Go
43 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
|
|
"github.com/kataras/iris/v12/middleware/logger"
|
|
"github.com/kataras/iris/v12/middleware/recover"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Logger().SetLevel("debug")
|
|
// Optionally, add two builtin handlers
|
|
// that can recover from any http-relative panics
|
|
// and log the requests to the terminal.
|
|
app.Use(recover.New())
|
|
app.Use(logger.New())
|
|
|
|
// Method: GET
|
|
// Resource: http://localhost:8080
|
|
app.Handle("GET", "/", func(ctx iris.Context) {
|
|
ctx.HTML("<h1>Welcome</h1>")
|
|
})
|
|
|
|
// same as app.Handle("GET", "/ping", [...])
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/ping
|
|
app.Get("/ping", func(ctx iris.Context) {
|
|
ctx.WriteString("pong")
|
|
})
|
|
|
|
// Method: GET
|
|
// Resource: http://localhost:8080/hello
|
|
app.Get("/hello", func(ctx iris.Context) {
|
|
ctx.JSON(iris.Map{"message": "Hello Iris!"})
|
|
})
|
|
|
|
// http://localhost:8080
|
|
// http://localhost:8080/ping
|
|
// http://localhost:8080/hello
|
|
app.Listen(":8080", iris.WithoutServerError(iris.ErrServerClosed))
|
|
}
|