|
|
@ -537,7 +537,6 @@ type UserService interface { |
|
|
|
AddUserCoupon(in *Request, out *Response) error |
|
|
|
UpdateUserCoupon(in *Request, out *Response) error |
|
|
|
Fans(in *Request, out *Response) error |
|
|
|
LockFans(in *Request, out *Response) error |
|
|
|
} |
|
|
|
|
|
|
|
// AcceptUserServiceClient accepts connections on the listener and serves requests
|
|
|
@ -684,9 +683,6 @@ func (c *UserServiceClient) UpdateUserCoupon(in *Request, out *Response) error { |
|
|
|
func (c *UserServiceClient) Fans(in *Request, out *Response) error { |
|
|
|
return c.Call("UserService.Fans", in, out) |
|
|
|
} |
|
|
|
func (c *UserServiceClient) LockFans(in *Request, out *Response) error { |
|
|
|
return c.Call("UserService.LockFans", in, out) |
|
|
|
} |
|
|
|
|
|
|
|
// DialUserService connects to an UserService at the specified network address.
|
|
|
|
func DialUserService(network, addr string) (*UserServiceClient, *rpc.Client, error) { |
|
|
|