# LiMuBai Bot Globals
# Written by Ben Reser < ben@reser.org>
# Adapted from test.pl by dennis taylor <dennis@funkplanet.com>

package LiMuBai::Globals;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
use vars qw($nick $server $port $username $ircname $quit);

require Exporter;
@ISA = qw(Exporter);

@EXPORT = ();
@EXPORT_OK = qw($nick $server $port $username $ircname $quit);
%EXPORT_TAGS = (all=>[@EXPORT_OK]);

$VERSION = '0.1';

$nick = 'LiMuBai';
$server = 'token.rhizomatic.net';
$port = 6668;
$username = 'limubai';
$ircname = 'Fear the Green Destiny!';
$quit = 0;

1;
