1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 18:37:05 +00:00

resolve conflicts with current master v11.1.1

Former-commit-id: 659ff392e889f3a8552d7da3d44848f1a364f7b2
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-07-23 19:20:07 +03:00
41 changed files with 406 additions and 70 deletions

View File

@@ -53,7 +53,7 @@ func main() {
//set session values
s.Set("name", "iris")
//test if setted here
//test if set here
ctx.Writef("All ok session value of the 'name' is: %s", s.GetString("name"))
})
@@ -63,7 +63,7 @@ func main() {
// set session values
s.Set(key, value)
// test if setted here
// test if set here
ctx.Writef("All ok session value of the '%s' is: %s", key, s.GetString(key))
})
@@ -74,7 +74,7 @@ func main() {
// set session values
s.Set(key, value)
valueSet := s.Get(key)
// test if setted here
// test if set here
ctx.Writef("All ok session value of the '%s' is: %v", key, valueSet)
})