ActionsService implements the ActionsService gRPC API.
| 19 | |
| 20 | // ActionsService implements the ActionsService gRPC API. |
| 21 | type ActionsService struct { |
| 22 | client ActionsClientInterface |
| 23 | } |
| 24 | |
| 25 | func (s *ActionsService) Signal(ctx context.Context, c *connect.Request[actions.SignalRequest]) (*connect.Response[actions.SignalResponse], error) { |
| 26 | return nil, connect.NewError(connect.CodeUnimplemented, errors.New("endpoint Signal not implemented")) |
nothing calls this directly
no outgoing calls
no test coverage detected