package DirectoryName::ModuleName;

#
# A description of what this package will do should
# go here.  Don't be afraid to write too much, the
# more we know the better off we are.
#

use strict;
use warnings;
use Carp;

use lib ('/app/tools/common/lib');
use Common::RSApp;

use base 'Common::RSApp';

sub new {
    my $class = shift;
    my $self  = $class->SUPER::new(@_);
    return $self;
}

sub execute {
    my $self = shift;

    # The guts of the request go here.
    #
    # Be sure to call one of the following:
    #   1. SetStylesheet
    #   2. SetTemplate
    #   3. SetRedirect
    #
    # Use croak is signal a critical error.

    return 1;
}

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