From 3f65d48264430428a2165f6a9f5a4e16f823f6b8 Mon Sep 17 00:00:00 2001 From: Zoffix Znet Date: Thu, 19 May 2016 19:49:39 -0400 Subject: Start new design docs --- lib/old-IRC/Client/Plugin/Debugger.pm6 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 lib/old-IRC/Client/Plugin/Debugger.pm6 (limited to 'lib/old-IRC/Client/Plugin/Debugger.pm6') diff --git a/lib/old-IRC/Client/Plugin/Debugger.pm6 b/lib/old-IRC/Client/Plugin/Debugger.pm6 new file mode 100644 index 0000000..13b1461 --- /dev/null +++ b/lib/old-IRC/Client/Plugin/Debugger.pm6 @@ -0,0 +1,8 @@ +use Data::Dump; +use IRC::Client::Plugin; +unit class IRC::Client::Plugin::Debugger is IRC::Client::Plugin; + +method irc-all-events ($irc, $e) { + say Dump $e, :indent(4); + return IRC_NOT_HANDLED; +} -- cgit v1.1