We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9452ec commit 9257182Copy full SHA for 9257182
context.md
@@ -1062,18 +1062,14 @@ c.Send(body ...interface{})
1062
{% endcode %}
1063
1064
{% code title="Example" %}
1065
-```text
1066
-
1067
-```
1068
-{% endcode %}
1069
1070
```go
1071
app.Get("/", func(c *fiber.Ctx) {
1072
c.Send("Hello, World!") // => "Hello, World!"
1073
c.Send([]byte("Hello, World!")) // => "Hello, World!"
1074
c.Send(123) // => 123
1075
})
1076
```
+{% endcode %}
1077
1078
Fiber also provides `SendBytes` & `SendString` methods for raw inputs.
1079
0 commit comments