Implement list and fix test

This commit is contained in:
bel
2019-06-21 17:57:00 -06:00
parent ade973d19d
commit 52479ed8a0
12 changed files with 161 additions and 29 deletions

10
dynomite.go Normal file
View File

@@ -0,0 +1,10 @@
package storage
type Dynomite struct {
*Redis
}
func NewDynomite(addr, user, pass string) (*Dynomite, error) {
r, err := NewRedis(addr, user, pass)
return &Dynomite{Redis: r}, err
}