| 28 | ) |
| 29 | |
| 30 | type Put struct { |
| 31 | DMap string |
| 32 | Key string |
| 33 | Value []byte |
| 34 | EX float64 |
| 35 | PX int64 |
| 36 | EXAT float64 |
| 37 | PXAT int64 |
| 38 | NX bool |
| 39 | XX bool |
| 40 | } |
| 41 | |
| 42 | func NewPut(dmap, key string, value []byte) *Put { |
| 43 | return &Put{ |
nothing calls this directly
no outgoing calls
no test coverage detected