github.com/hdt3213/godis@v1.2.9/interface/redis/reply.go (about)

     1  package redis
     2  
     3  // Reply is the interface of redis serialization protocol message
     4  type Reply interface {
     5  	ToBytes() []byte
     6  }