summaryrefslogtreecommitdiffstats
path: root/bin/run
blob: b838695019614c33ca15d1ecd08fb224e4d9d42f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env perl
use strict;
use warnings;
use lib 'lib';
use Crawl::Bot;

Crawl::Bot->new(
    server   => 'irc.freenode.net',
    channels => ['##crawl-dev'],
    nick     => 'Ashenzari',
)->run;