X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=a1-go%2Fpkg%2Fresthooks%2Ftypes.go;fp=a1-go%2Fpkg%2Fresthooks%2Ftypes.go;h=83028743e9068c8ce051790e68709c2b15cc036a;hb=3ad6de4df1dfe70e467064e6477f2e6068e87048;hp=e84e04841dd82ca2b1b2376a68d3b5d4fba1cde4;hpb=b5c9dd5ecf69928bb998662b12c01672895e20d3;p=ric-plt%2Fa1.git diff --git a/a1-go/pkg/resthooks/types.go b/a1-go/pkg/resthooks/types.go index e84e048..8302874 100644 --- a/a1-go/pkg/resthooks/types.go +++ b/a1-go/pkg/resthooks/types.go @@ -28,4 +28,6 @@ type iSdl interface { GetAll(string) ([]string, error) SetIfNotExists(ns string, key string, data interface{}) (bool, error) Get(string, []string) (map[string]interface{}, error) + SetIf(ns string, key string, oldData, newData interface{}) (bool, error) + Set(ns string, pairs ...interface{}) error }