summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Command/Utils.pm
blob: 3356c260581430910c39192f67bff1e240a118db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package FML::Command::Utils;
use strict;
use vars qw(@ISA @EXPORT @EXPORT_OK $AUTOLOAD);
use Carp;
use FML::Log qw(Log LogWarn LogError);

sub new
{
    my ($self) = @_;
    my ($type) = ref($self) || $self;
    my $me     = {};
    return bless $me, $type;
}


sub DESTROY { ;}


1;