1
0
mirror of https://github.com/astaxie/beego.git synced 2024-07-05 01:15:10 +00:00
Beego/vendor/github.com/siddontang/ledisdb/store/driver/slice.go
2018-11-09 12:37:28 +08:00

22 lines
230 B
Go

package driver
type ISlice interface {
Data() []byte
Size() int
Free()
}
type GoSlice []byte
func (s GoSlice) Data() []byte {
return []byte(s)
}
func (s GoSlice) Size() int {
return len(s)
}
func (s GoSlice) Free() {
}