update client

This commit is contained in:
2025-12-26 14:23:54 +03:00
parent f4962e54a3
commit a5659c5d02
75 changed files with 2436 additions and 288 deletions

View File

@@ -42,14 +42,14 @@ func ExampleClient_Value() {
port, err := config.Value(ctx, "listen")
if err != nil {
log.Print("listen", err)
log.Print("listen: ", err)
return
}
hostValue, err := config.Value(ctx, "host")
if err != nil {
log.Print("host ", err)
log.Print("host:", err)
return
}