summaryrefslogtreecommitdiffstats
path: root/bin/run
blob: 780877bb68e728b4fe3e43323df3b8c15a0025cb (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     => 'Cheibriados',
)->run;