From 871fb86a6e5989bb8be4febbb78a2fc42dbc7c44 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Fri, 9 Aug 2019 23:15:04 +0300 Subject: [PATCH] add link for transactions example --- Response-recorder.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Response-recorder.md b/Response-recorder.md index 3e9afc1..089d1aa 100644 --- a/Response-recorder.md +++ b/Response-recorder.md @@ -102,3 +102,5 @@ app.Get("/save", func(ctx iris.Context) { ctx.WriteString("success") }) ``` + +In addition to that, Iris provides a comprehensive API for **Transactions**. Learn more about it by running an [example](https://github.com/kataras/iris/blob/master/_examples/http_responsewriter/transactions/main.go).