#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package Raptor::Command;

#
# This class is intended to be a base class for all the commands in RPS.
#

use strict;
use warnings;

use lib '/app/tools/common/lib';
use RSApache::Command::SessionedCommand;
use base 'RSApache::Command::SessionedCommand';

sub app { return 'app'; }

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

