Browse Source

更新pb.go

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

+ 4
- 0
redis.pb.go View File

@ -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)
}


Loading…
Cancel
Save