###################################################################
# Copyright (C) 2011 RoyaltyShare, Inc.  All Rights Reserved
###################################################################

package Report::Config;

use strict;
use warnings;

use lib '/app/tools/common/lib';
use Common::Assert;

use base 'Common::Config';

sub _configParameters {
    {
        report_script => {
            DEFAULT => '/app/tools/report/bin/dynamic/run_report',
        },
    };
}

sub _configFileName { 'rs_report.conf'; }

1;
