(ctx context.Context, tag, email string)
| 80 | } |
| 81 | |
| 82 | func (x *XrayHandler) RemoveOutboundUser(ctx context.Context, tag, email string) error { |
| 83 | operation, err := ToTypedMessage(&command.RemoveUserOperation{ |
| 84 | Email: email, |
| 85 | }) |
| 86 | if err != nil { |
| 87 | return err |
| 88 | } |
| 89 | |
| 90 | // Call the AlterInbound method with the AddUserOperation message |
| 91 | return x.AlertOutbound(ctx, tag, operation) |
| 92 | } |
nothing calls this directly
no test coverage detected