The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use strict;
use warnings;

BEGIN {
        my $default_cmd = "commands";
        # unshift @ARGV, $default_cmd unless $ARGV[0] =~ /^\w/;
}

use App::Report::Generator;
my $app = App::Report::Generator->new();
$app->run();