summaryrefslogtreecommitdiffstats
path: root/lib/Reply/Plugin/DataDumper.pm
blob: 676344acfe2579d56644b6170a947e170fee3885 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Reply::Plugin::DataDumper;
use strict;
use warnings;

use base 'Reply::Plugin';

use Data::Dumper;

sub mangle_result {
    my $self = shift;
    my (@result) = @_;
    return Dumper(@result);
}

1;