aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Echo.pm
blob: 2cd59fc29e72d97eec4c2391ee6148c21f6f9477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package Plugin::Echo;

use strict;
use warnings;

sub configure {
	my $self = shift;
	my $cmdref = shift;

	$cmdref->("echo", sub { $self->echo(@_); } );

	return $self;
}

sub echo {
	my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_;

	return $rest;
}
1;