Browse Source

更新pb.go

master
guzeng 3 years ago
parent
commit
ba36879934
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      redis.pb.go

+ 2
- 2
redis.pb.go View File

@ -536,7 +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
SCard(in *SMembersRequest, out *SSetResponse) error
LLpush(in *LSetRequest, out *LSetResponse) error
LRpush(in *LSetRequest, out *LSetResponse) error
LRange(in *LRangeRequest, out *HGetListResponse) error
@ -663,7 +663,7 @@ 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 {
func (c *RedisServiceClient) SCard(in *SMembersRequest, out *SSetResponse) error {
return c.Call("RedisService.SCard", in, out)
}
func (c *RedisServiceClient) LLpush(in *LSetRequest, out *LSetResponse) error {


Loading…
Cancel
Save