The rest of the files needed to pass Redis tests

This commit is contained in:
cpb8010
2013-08-31 01:17:12 -04:00
parent eb8e5b33a9
commit 999a268ca8
3 changed files with 17 additions and 3 deletions

1
cache/cache.go vendored
View File

@@ -17,6 +17,7 @@ import (
var (
drivers = make(map[string]Driver)
ErrTxDone = errors.New("cache: Transaction has already been committed or rolled back")
ErrTxConflict = errors.New("cache: Commit interrupted, update transaction and repeat")
)
type Driver interface {