summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/run11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/run b/bin/run
new file mode 100644
index 0000000..14f9577
--- /dev/null
+++ b/bin/run
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Bot::Games;
+
+my $bot = Bot::Games->new(
+ server => 'irc.efnet.net',
+ channels => ['#netmonster'],
+ nick => 'doygames',
+);
+$bot->run;