Text
func handler(ctx iris.Context) {
response := "Hello, %s!"
ctx.Text(response, "World")
// ctx.Writef(response, "World")
}Hello, World!Last updated
Was this helpful?
func handler(ctx iris.Context) {
response := "Hello, %s!"
ctx.Text(response, "World")
// ctx.Writef(response, "World")
}Hello, World!Last updated
Was this helpful?
Was this helpful?