This commit is contained in:
Bel LaPointe
2019-03-01 13:40:11 -07:00
parent de5f827ab6
commit c91c1e5ddb
2 changed files with 13 additions and 3 deletions

View File

@@ -1,6 +1,11 @@
package storage
import "local/rproxy3/storage/packable"
import (
"errors"
"local/rproxy3/storage/packable"
)
var ErrNotFound = errors.New("not found")
type DB interface {
Get(string, string, packable.Packable) error