From e95aa2f8ba0b293be2512b9d079527ce0fcb0d1d Mon Sep 17 00:00:00 2001 From: guzeng Date: Tue, 7 Dec 2021 14:05:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0pb.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- redis.pb.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redis.pb.go b/redis.pb.go index e323079..9ff0ae3 100644 --- a/redis.pb.go +++ b/redis.pb.go @@ -536,6 +536,7 @@ type RedisService interface { SAdd(in *SSetRequest, out *SSetResponse) error SIsmember(in *SSetRequest, out *SSetResponse) error SRem(in *SSetRequest, out *SSetResponse) error + SCard(in *SSetRequest, out *SSetResponse) error LLpush(in *LSetRequest, out *LSetResponse) error LRpush(in *LSetRequest, out *LSetResponse) error LRange(in *LRangeRequest, out *HGetListResponse) error @@ -662,6 +663,9 @@ func (c *RedisServiceClient) SIsmember(in *SSetRequest, out *SSetResponse) error func (c *RedisServiceClient) SRem(in *SSetRequest, out *SSetResponse) error { return c.Call("RedisService.SRem", in, out) } +func (c *RedisServiceClient) SCard(in *SSetRequest, out *SSetResponse) error { + return c.Call("RedisService.SCard", in, out) +} func (c *RedisServiceClient) LLpush(in *LSetRequest, out *LSetResponse) error { return c.Call("RedisService.LLpush", in, out) }