|
|
@ -101,6 +101,7 @@ type SupplierService interface { |
|
|
|
Get(in *Request, out *Response) error |
|
|
|
GetByUuid(in *Request, out *Response) error |
|
|
|
IsOpen(in *Request, out *Response) error |
|
|
|
Get380Star(in *Request, out *Response) error |
|
|
|
} |
|
|
|
|
|
|
|
// AcceptSupplierServiceClient accepts connections on the listener and serves requests
|
|
|
@ -181,6 +182,9 @@ func (c *SupplierServiceClient) GetByUuid(in *Request, out *Response) error { |
|
|
|
func (c *SupplierServiceClient) IsOpen(in *Request, out *Response) error { |
|
|
|
return c.Call("SupplierService.IsOpen", in, out) |
|
|
|
} |
|
|
|
func (c *SupplierServiceClient) Get380Star(in *Request, out *Response) error { |
|
|
|
return c.Call("SupplierService.Get380Star", in, out) |
|
|
|
} |
|
|
|
|
|
|
|
// DialSupplierService connects to an SupplierService at the specified network address.
|
|
|
|
func DialSupplierService(network, addr string) (*SupplierServiceClient, *rpc.Client, error) { |
|
|
|