summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2009-11-25 22:36:11 -0600
committerJesse Luehrs <doy@tozt.net>2009-11-25 22:36:11 -0600
commit9fa5426c6e1cb1fce6325670aa5c3e7cf1b85e5c (patch)
tree385ec85705ccd9aa98ca930f4c7bc82972a7c9e5 /bin
downloadcrawlbot-9fa5426c6e1cb1fce6325670aa5c3e7cf1b85e5c.tar.gz
crawlbot-9fa5426c6e1cb1fce6325670aa5c3e7cf1b85e5c.zip
initial implementation
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;