mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
837787104b
Former-commit-id: 39d547ecfb1516505a1eb76a12a1f6e9e4111962
30 lines
838 B
Go
30 lines
838 B
Go
package main
|
|
|
|
import (
|
|
"github.com/kataras/iris/v12"
|
|
)
|
|
|
|
func main() {
|
|
app := iris.New()
|
|
app.Get("/", func(ctx iris.Context) {
|
|
ctx.HTML("<b>Hello!</b>")
|
|
})
|
|
// [...]
|
|
|
|
// Good when you want to modify the whole configuration.
|
|
app.Listen(":8080", iris.WithConfiguration(iris.Configuration{ // default configuration:
|
|
DisableStartupLog: false,
|
|
DisableInterruptHandler: false,
|
|
DisablePathCorrection: false,
|
|
EnablePathEscape: false,
|
|
FireMethodNotAllowed: false,
|
|
DisableBodyConsumptionOnUnmarshal: false,
|
|
DisableAutoFireStatusCode: false,
|
|
TimeFormat: "Mon, 02 Jan 2006 15:04:05 GMT",
|
|
Charset: "utf-8",
|
|
}))
|
|
|
|
// or before Run:
|
|
// app.Configure(iris.WithConfiguration(iris.Configuration{...}))
|
|
}
|