NullBulkString replies a null bulkstring when commit
(w io.Writer)
| 46 | |
| 47 | // NullBulkString replies a null bulkstring when commit |
| 48 | func NullBulkString(w io.Writer) OnCommit { |
| 49 | return func() { |
| 50 | resp.ReplyNullBulkString(w) |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | // Integer replies in integer when commit |
| 55 | func Integer(w io.Writer, v int64) OnCommit { |
no test coverage detected