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

package LiMuBai::Channels;

use strict;
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);

require Exporter;
@ISA = qw(Exporter);

@EXPORT = ();
@EXPORT_OK = qw();
%EXPORT_TAGS = (all=>[@EXPORT_OK]);

$VERSION = '0.1';

sub new {
  my ($self) = bless {};
  $self->{'channels'} = [];
  return $self;
}  

sub irc_join {
  
}

1;
