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

my $bot = Bot::Games->new(
    server   => 'irc.efnet.net',
    channels => ['#netmonster'],
    nick     => 'doygames',
);
$bot->run;