package main import ( "github.com/kataras/iris/v12" "github.com/kataras/iris/v12/context" ) func main() { app := iris.New() // subdomains works with all available routers, like other features too. app.Get("/", func(ctx iris.Context) { ctx.BeginTransaction(func(t *context.Transaction) { // OPTIONAl STEP: , if true then the next transictions will not be executed if this transiction fails // t.SetScope(context.RequestTransactionScope) // OPTIONAL STEP: // create a new custom type of error here to keep track of the status code and reason message err := context.NewTransactionErrResult() // we should use t.Context if we want to rollback on any errors lives inside this function clojure. t.Context().Text("Blablabla this should not be sent to the client because we will fill the err with a message and status") // virtualize a fake error here, for the sake of the example fail := true if fail { err.StatusCode = iris.StatusInternalServerError // NOTE: if empty reason then the default or the custom http error will be fired (like ctx.FireStatusCode) err.Reason = "Error: Virtual failure!!" } // OPTIONAl STEP: // but useful if we want to post back an error message to the client if the transaction failed. // if the reason is empty then the transaction completed successfully, // otherwise we rollback the whole response writer's body, // headers and cookies, status code and everything lives inside this transaction t.Complete(err) }) ctx.BeginTransaction(func(t *context.Transaction) { t.Context().HTML("