diff --git a/cluster_commands.go b/cluster_commands.go index 0caf0977..f07d2a49 100644 --- a/cluster_commands.go +++ b/cluster_commands.go @@ -3,6 +3,7 @@ package redis import "context" type ClusterCmdable interface { + ClusterMyID(ctx context.Context) *StringCmd ClusterMyShardID(ctx context.Context) *StringCmd ClusterSlots(ctx context.Context) *ClusterSlotsCmd ClusterShards(ctx context.Context) *ClusterShardsCmd @@ -29,6 +30,12 @@ type ClusterCmdable interface { ReadWrite(ctx context.Context) *StatusCmd } +func (c cmdable) ClusterMyID(ctx context.Context) *StringCmd { + cmd := NewStringCmd(ctx, "cluster", "myid") + _ = c(ctx, cmd) + return cmd +} + func (c cmdable) ClusterMyShardID(ctx context.Context) *StringCmd { cmd := NewStringCmd(ctx, "cluster", "myshardid") _ = c(ctx, cmd)