rproxy3/storage/db.go

10 lines
187 B
Go

package storage
import "local/rproxy3/storage/packable"
type DB interface {
Get(string, string, packable.Packable) error
Set(string, string, packable.Packable) error
Close() error
}