mirror of https://github.com/ledisdb/ledisdb.git
10 lines
113 B
Go
10 lines
113 B
Go
|
package store
|
||
|
|
||
|
import (
|
||
|
"github.com/siddontang/ledisdb/store/driver"
|
||
|
)
|
||
|
|
||
|
type Slice interface {
|
||
|
driver.ISlice
|
||
|
}
|