From c02b0e570d51f098ed1f7f504874ec5d48754bca Mon Sep 17 00:00:00 2001 From: EdricCua Date: Thu, 30 Jan 2025 04:35:31 +0000 Subject: [PATCH] Addressed review comments Signed-off-by: EdricCua --- go/api/connection_management_cluster_commands.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/go/api/connection_management_cluster_commands.go b/go/api/connection_management_cluster_commands.go index 7f5b92461e..142eecdc18 100644 --- a/go/api/connection_management_cluster_commands.go +++ b/go/api/connection_management_cluster_commands.go @@ -13,18 +13,6 @@ type ConnectionManagementClusterCommands interface { Ping() (string, error) PingWithOptions(pingOptions options.ClusterPingOptions) (string, error) -} -// Copyright Valkey GLIDE Project Contributors - SPDX Identifier: Apache-2.0 - -package api - -import "github.com/valkey-io/valkey-glide/go/glide/api/options" -// Supports commands and transactions for the "Connection Management" group of commands for cluster client. -// -// See [valkey.io] for details. -// -// [valkey.io]: https://valkey.io/commands/#connection -type ConnectionManagementClusterCommands interface { EchoWithOptions(echoOptions options.ClusterEchoOptions) (ClusterValue[string], error) }