(jpeg []byte)
| 401 | } |
| 402 | |
| 403 | func JPEG(jpeg []byte) Data { |
| 404 | return MakeData(MIMETypeJPEG, jpeg) |
| 405 | } |
| 406 | |
| 407 | func JSON(json map[string]interface{}) Data { |
| 408 | return MakeData(MIMETypeJSON, json) |
nothing calls this directly
no test coverage detected