output the value as a string

This commit is contained in:
Alfred Kamanda 2024-12-31 11:41:04 +03:00
parent c7dbe1d88f
commit 7a535f796a
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -69,7 +69,7 @@ func main() {
fmt.Fprintf(os.Stderr, err.Error())
os.Exit(1)
}
fmt.Printf("%vValue: %v\n\n", o, v)
fmt.Printf("%vValue: %v\n\n", o, string(v))
}
err = store.Close()