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

package RDAS::Config;

use strict;
use warnings;

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

use base 'Common::Config';

sub _configParameters {
    {
        throttler_sleep_time => {
            DEFAULT => 5,
        },
        throttler_log => {
            DEFAULT => '/var/log/royaltyshare/throttler.log',
        },
        throttler_pid_file => {
            DEFAULT => '/var/run/royaltyshare/throttler.pid',
        },
    };
}

sub _configFileName { 'rs_rdas.conf'; }

1;
