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

update examples dependencies, see previous commit as well

This commit is contained in:
Gerasimos (Makis) Maropoulos
2025-03-30 01:07:36 +02:00
parent 630c67ea6d
commit bcf88f9f2f
64 changed files with 1642 additions and 1691 deletions

View File

@@ -109,7 +109,7 @@ func main() {
app.Get("/admin", func(ctx iris.Context) {
ctx.WriteString("super secret information that only logged in administrators must see!\n\n")
if usernames, err := userstate.AllUsernames(); err == nil {
ctx.Writef("list of all users: %s" + strings.Join(usernames, ", "))
ctx.Writef("list of all users: %s", strings.Join(usernames, ", "))
}
})