From 657affa7250a5ae93c56411cb667772fe044ec56 Mon Sep 17 00:00:00 2001 From: Edward Liang Date: Thu, 23 Jan 2025 16:35:08 -0800 Subject: [PATCH] quickfix of changing glideClient to become GlideClient Signed-off-by: Edward Liang --- go/api/glide_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/api/glide_client.go b/go/api/glide_client.go index f2e180043c..4fc0ea8553 100644 --- a/go/api/glide_client.go +++ b/go/api/glide_client.go @@ -165,7 +165,7 @@ func (client *GlideClient) Select(index int64) (string, error) { // fmt.Println(result) // Output: 1 // // [valkey.io]: https://valkey.io/commands/dbsize/ -func (client *glideClient) DBSize() (int64, error) { +func (client *GlideClient) DBSize() (int64, error) { result, err := client.executeCommand(C.DBSize, []string{}) if err != nil { return defaultIntResponse, err