blob: 2f42cb26fe143f8177748b6e598a9efce01d40bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package Plugin::Introspect;
use strict;
use warnings;
my %config;
sub configure {
my $self = shift;
my $cmdref = shift;
my $cref = shift;
%config = %$cref;
$cmdref->("plugins", sub { $self->dump_plugins(@_); } );
return $self;
}
sub dump_plugins {
my ($self, $irc, $logger, $who, $where, $rest, @arguments) = @_;
return "Plugins: " . join ", ", @{$config{plugins}};
}
1;
|