aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2015-12-06 15:05:29 -0500
committerZoffix Znet <cpan@zoffix.com>2015-12-06 15:05:29 -0500
commitba793ec6d1d4c66300f40cbced25f9ffd23ec792 (patch)
treebc419699af8499c4b90026d605f72aa832325ef5 /examples
parente0b2a598b9475edcfca40b7cb4faa7746232a30c (diff)
Debug
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl64
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 3bd14cc..b410288 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -1,12 +1,14 @@
use v6;
use lib 'lib';
use IRC::Client;
+use IRC::Client::Plugin::Debugger;
# use IRC::Client::Plugin::HNY;
my $irc = IRC::Client.new(
- :host('irc.freenode.net'),
+ :host('10.10.11.12'),
:debug,
plugins => [
+ IRC::Client::Plugin::Debugger.new
# IRC::Client::Plugin::HNY.new,
]
).run;