Files
redis-go/interface/redis/reply.go
2021-05-13 08:56:07 +08:00

7 lines
124 B
Go

package redis
// Reply is the interface of redis serialization protocol message
type Reply interface {
ToBytes() []byte
}