WriteJsonBlob write json []byte to response
(b []byte)
| 633 | |
| 634 | // WriteJsonBlob write json []byte to response |
| 635 | func (ctx *HttpContext) WriteJsonBlob(b []byte) error { |
| 636 | return ctx.WriteJsonBlobC(defaultHttpCode, b) |
| 637 | } |
| 638 | |
| 639 | // WriteJsonBlobC write (httpCode, json []byte) to response |
| 640 | func (ctx *HttpContext) WriteJsonBlobC(code int, b []byte) error { |
nothing calls this directly
no test coverage detected