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

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