This commit is contained in:
Bel LaPointe
2019-02-18 09:31:35 -07:00
commit cbf886fb7e
14 changed files with 1016 additions and 0 deletions

9
storage/db.go Normal file
View File

@@ -0,0 +1,9 @@
package storage
import "local/rproxy3/storage/packable"
type DB interface {
Get(string, string, packable.Packable) error
Set(string, string, packable.Packable) error
Close() error
}