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