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;
use lib qw(../lib ./userLib);
use CGI::MiniFramework;

my $f = CGI::MiniFramework->new(
    PREFIX       => 'App',
    DEFAULT      => 'Index',
    DEFAULT_MODE => 'index',
);

print $f->run();