1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 20:41:57 +00:00

Release version 12.2.0-beta2

This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-05-09 03:01:34 +03:00
parent d989044054
commit 02077a01fa
9 changed files with 88 additions and 7 deletions

View File

@@ -28,6 +28,7 @@ import "github.com/kataras/iris/v12"
func main() {
app := iris.New()
app.Use(iris.Compression)
app.Get("/", func(ctx iris.Context) {
ctx.HTML("Hello <strong>%s</strong>!", "World")
@@ -362,7 +363,7 @@ With your help, we can improve Open Source web development for everyone!
$ mkdir myapp
$ cd myapp
$ go mod init myapp
$ go get github.com/kataras/iris/v12@master # or @v12.2.0-beta1
$ go get github.com/kataras/iris/v12@master # or @v12.2.0-beta2
```
<details><summary>Install on existing project</summary>