output the value as a string

This commit is contained in:
2024-12-31 11:41:04 +03:00
parent c7dbe1d88f
commit 7a535f796a

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()