aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-06-05 09:04:21 -0400
committerZoffix Znet <cpan@zoffix.com>2016-06-05 09:04:21 -0400
commitc194b1d8b3b4e85d5ffd5b36c7deb63a494386fa (patch)
tree04c4653da781ba7add6adf37046d9a9f4118c6c7 /examples
parentfc59edef8c4a13cb894edad8f7ded39bff3f96d8 (diff)
Z
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl65
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 70dbaa3..d64e9b8 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -14,6 +14,9 @@ my $irc = IRC::Client.new(
:debug<1>
# :channels<#zofbot>
# :host<irc.freenode.net>
- :port<5667>
+ :servers(
+ inspircd => { :port<6667> }
+ mine => { :port<5667> }
+ )
:plugins(MyPlug.new)
).run;