package Common::Parser::Item;
use strict;

use lib '/app/tools/common/lib';

sub new {
    my $class = shift;

    my $self = {};
    bless $self, $class;

    return $self->_init(@_);
}

sub _init {
    my ( $self, %args ) = @_;

    return $self;
}

###
1;    # Play nicely.
###
