Integer replies in integer when commit
(w io.Writer, v int64)
| 53 | |
| 54 | // Integer replies in integer when commit |
| 55 | func Integer(w io.Writer, v int64) OnCommit { |
| 56 | return func() { |
| 57 | resp.ReplyInteger(w, v) |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | // BytesArray replies a [][]byte when commit |
| 62 | func BytesArray(w io.Writer, a [][]byte) OnCommit { |
no test coverage detected