aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Echo.pm
blob: f5225fe3fa72fcc6e4e99407eea4aea04f8ee6e4 (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->($self, "echo", sub { $self->echo(@_); } );

	return $self;
}

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

	return $rest;
}
1;