mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-06 01:07:06 +08:00
10 lines
190 B
Go
10 lines
190 B
Go
package db
|
|
|
|
import "github.com/hdt3213/godis/interface/redis"
|
|
|
|
type DB interface {
|
|
Exec(client redis.Connection, args [][]byte) redis.Reply
|
|
AfterClientClose(c redis.Connection)
|
|
Close()
|
|
}
|