SDL CLI 'get' reads keys data in the given namespace
[ric-plt/sdlgo.git] / internal / cli / types.go
index dbe410b..53953a8 100644 (file)
@@ -41,6 +41,7 @@ type DbCreateCb func() *Database
 
 //iSyncStorage is an interface towards SDL SyncStorage API
 type ISyncStorage interface {
+       Get(ns string, keys []string) (map[string]interface{}, error)
        ListKeys(ns string, pattern string) ([]string, error)
        Set(ns string, pairs ...interface{}) error
        Remove(ns string, keys []string) error