summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rw-r--r--bin/run14
1 files changed, 14 insertions, 0 deletions
diff --git a/bin/run b/bin/run
new file mode 100644
index 0000000..3d29cb7
--- /dev/null
+++ b/bin/run
@@ -0,0 +1,14 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use lib 'lib';
+use Crawl::Bot;
+
+Crawl::Bot->new(
+ server => 'leguin.freenode.net',
+ port => '6667',
+ channels => ['#doytest'],
+ nick => 'mantisbot',
+ username => 'mantisbot',
+ name => 'mantisbot',
+)->run;