Initial commit for Xapp Orchestration
[ric-plt/appmgr.git] / pkg / resthooks / types.go
index f2af972..1376500 100755 (executable)
@@ -36,6 +36,7 @@ type Resthook struct {
        client        *http.Client
        subscriptions cmap.ConcurrentMap
        db            iSdl
+        db2           iSdl
        Seq           int64
 }
 
@@ -52,4 +53,5 @@ type iSdl interface {
        Get(keys []string) (map[string]interface{}, error)
        GetAll() ([]string, error)
        RemoveAll() error
+       Remove([]string) error
 }