BulkString replies a bulkstring when commit
(w io.Writer, s string)
| 39 | |
| 40 | // BulkString replies a bulkstring when commit |
| 41 | func BulkString(w io.Writer, s string) OnCommit { |
| 42 | return func() { |
| 43 | resp.ReplyBulkString(w, s) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | // NullBulkString replies a null bulkstring when commit |
| 48 | func NullBulkString(w io.Writer) OnCommit { |
no test coverage detected