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

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