1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-09 13:05:56 +00:00

minor: compatibility: context render

This commit is contained in:
Gerasimos (Makis) Maropoulos
2022-09-27 20:43:01 +03:00
parent 028ad9f11e
commit 29010bfd7c
4 changed files with 23 additions and 1 deletions

View File

@@ -62,7 +62,7 @@ type (
func main() {
app := iris.New()
app.Post("/", your_package.Handle(handler))
app.Post("/", x.Handle(handler))
app.Listen(":8080")
}