Files
mattf 225a1addac Created stable release branch of 2.9
git-svn-id: svn://192.168.202.10@2127 3d104415-ff17-0410-8863-d5cf3c621b8a
2014-06-12 20:16:40 +00:00

21 lines
261 B
Perl

package Asterisk;
require 5.004;
$VERSION = '0.08';
sub version { $VERSION; }
sub new {
my ($class, %args) = @_;
my $self = {};
$self->{configfile} = undef;
$self->{config} = {};
bless $self, ref $class || $class;
return $self;
}
sub DESTROY { }
1;