SimpleString replies a simplestring when commit
(w io.Writer, s string)
| 32 | |
| 33 | // SimpleString replies a simplestring when commit |
| 34 | func SimpleString(w io.Writer, s string) OnCommit { |
| 35 | return func() { |
| 36 | resp.ReplySimpleString(w, s) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | // BulkString replies a bulkstring when commit |
| 41 | func BulkString(w io.Writer, s string) OnCommit { |
no test coverage detected