Data contains ContentType and bytes data.
| 11 | |
| 12 | // Data contains ContentType and bytes data. |
| 13 | type Data struct { |
| 14 | ContentType string |
| 15 | Data []byte |
| 16 | } |
| 17 | |
| 18 | // Render (Data) writes data with custom ContentType. |
| 19 | func (r Data) Render(w http.ResponseWriter) (err error) { |
nothing calls this directly
no outgoing calls
no test coverage detected