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

use strict;
use warnings;

use lib '/app/tools/rps/lib';
use RPS::License::US::AccountForm;
use RPS::License::Command::US::Show;
use RPS::DB::Item::MechanicalRun;

use RPS::License::Command::BaseAccountEdit;
use base 'RPS::License::Command::BaseAccountEdit';

sub area { return 'license'; }

sub _template { return "/app/tools/rps/templates/license/account.xsl"; }
sub _form { return "RPS::License::US::AccountForm"; }
sub _command { return "RPS::License::Command::US::Show"; }

1;
