SendStatus sets the HTTP status code and if the response body is empty, it sets the correct status message in the body.
(status int)
| 130 | // SendStatus sets the HTTP status code and if the response body is empty, |
| 131 | // it sets the correct status message in the body. |
| 132 | SendStatus(status int) error |
| 133 | // SendString sets the HTTP response body for string types. |
| 134 | // This means no type assertion, recommended for faster performance |
| 135 | SendString(body string) error |
no outgoing calls