#------------------------------------------------------------
# Copyright (C) 2006 RoyaltyShare, Inc.   All Rights Reserved
# $Id$
#------------------------------------------------------------
package RPS::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';

use lib '/app/tools/rps/lib';
use RPS::Message;

sub app { return 'rps'; }



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

