aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client/Plugin/Debugger.pm6
blob: 4ded968cf617863839921121211ff5fab8352090 (plain)
1
2
3
4
5
6
7
8
use Data::Dump;
use IRC::Client::Plugin;
unit class IRC::Client::Plugin::Debugger:ver<1.002001> is IRC::Client::Plugin;

method msg ($irc, $msg) {
    say Dump $msg, :indent(4);
    return IRC_NOT_HANDLED;
}