#!/usr/bin/perl
#

# Process to kick off a dynamic report.
#
# Usage:
#
#   run_report -c 202 -r 1
#
# client id and report id are required
#

use strict;

use lib '/app/tools/report/lib';
use Report::Dynamic::Process::RunReport;

Report::Dynamic::Process::RunReport->start();
