
package JK::Lib;

use strict;
use JK::Lib::Asterisk;
use JK::Lib::Daemon;
use JK::Lib::Misc;
use JK::Lib::iPhone;

our ($VERSION) = q$Revision: 1.01 $ =~ /(\d+\.\d+)/;

sub new {
    my $class = shift;
    my %args = @_;

    my $self = bless(\%args, $class);

    return($self);
}

sub _version {
    $JK::Lib::VERSION;
}

1;
