summaryrefslogtreecommitdiffstats
path: root/bin/run
blob: bf8caaf740c3d753a4fdd88a2a5d6818940ffed2 (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;

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