1
0
mirror of https://github.com/astaxie/beego.git synced 2025-02-23 06:37:12 +00:00

22 lines
230 B
Go
Raw Normal View History

2018-11-09 12:37:28 +08:00
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() {
}