RESPONSES:
(name string, value string)
| 1491 | // ////// RESPONSES: |
| 1492 | |
| 1493 | func (h *handler) setHeader(name string, value string) { |
| 1494 | h.response.Header().Set(name, value) |
| 1495 | } |
| 1496 | |
| 1497 | // Adds an "Etag" header to the response, whose value is the parameter wrapped in double-quotes. |
| 1498 | func (h *handler) setEtag(etag string) { |
no test coverage detected