Update openssl package of DBAAS docker image
[ric-plt/dbaas.git] / testapplication / go / testapp.go
index ae05850..32127a1 100644 (file)
@@ -21,8 +21,8 @@
 package main
 
 import (
-       "./sdl"
        "fmt"
+       "testapp/sdl"
 )
 
 func main() {
@@ -73,6 +73,11 @@ func main() {
                fmt.Printf("unable to write to DB\n")
        }
 
+       _, err = sdl1.SetIf("key1", "data1", "data2")
+       if err != nil {
+               fmt.Printf("unable to write to DB\n")
+       }
+
        retDataMap, err := sdl1.Get([]string{"key1", "key3", "key2"})
        if err != nil {
                fmt.Printf("Unable to read from DB\n")