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

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

use strict;
use warnings;

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

sub area { return '' }
sub cmd  { return '' }

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

