blob: b29a71a17fc220d2f9f748f2f315cc2d1054d8fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package Plugin::DevNull;
use strict;
use warnings;
my %config;
my $run_command;
sub configure {
my $self = shift;
my $cmdref = shift;
my $cref = shift;
$run_command = shift;
%config = %$cref;
$cmdref->("hush", sub { $self->hush(@_); } );
$cmdref->("devnull", sub { $self->hush(@_); } );
return $self;
}
sub hush {
my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_;
$run_command->($rest, $who, $where);
return;
}
1;
|