summaryrefslogtreecommitdiffstats
path: root/bin/run
blob: 7a00d84a80af7d4bd4af6ed8a21a39012f34a9c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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',
);
$bot->run;