aboutsummaryrefslogtreecommitdiff
path: root/Plugin/Echo.pm
blob: 76a245a2ae907077a0eca79e3fb89a6d40d34f2b (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
package Plugin::Echo;

use strict;
use warnings;

my %config;

sub configure {
	my $self = shift;
	my $cmdref = shift;
	my $cref = shift;
	%config = %$cref;

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

	return $self;
}

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

	return $rest;
}
1;