mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-06 01:07:06 +08:00
7 lines
124 B
Go
7 lines
124 B
Go
package redis
|
|
|
|
// Reply is the interface of redis serialization protocol message
|
|
type Reply interface {
|
|
ToBytes() []byte
|
|
}
|