aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Echo.pm
blob: d739a60e3b22e012fb4903d2e40eac582af3a57a (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, $no_reenter, @arguments) = @_;

	return $rest;
}
1;