(cc grpc.ClientConnInterface)
| 28 | } |
| 29 | |
| 30 | func NewMasterClient(cc grpc.ClientConnInterface) MasterClient { |
| 31 | return &masterClient{cc} |
| 32 | } |
| 33 | |
| 34 | func (c *masterClient) WorkerRegister(ctx context.Context, in *WorkerInfo, opts ...grpc.CallOption) (*RegisterResult, error) { |
| 35 | out := new(RegisterResult) |
no outgoing calls
no test coverage detected