|
package storage
|
|
|
|
import (
|
|
"errors"
|
|
"gitea.inhome.blapointe.com/local/rproxy3/storage/packable"
|
|
)
|
|
|
|
var ErrNotFound = errors.New("not found")
|
|
|
|
type DB interface {
|
|
Get(string, string, packable.Packable) error
|
|
Set(string, string, packable.Packable) error
|
|
Close() error
|
|
}
|