NAME
Squatting::On::CGI - if all else fails, you can still deploy on CGI
SYNOPSIS
Create an app.cgi
use App 'On::CGI';
my $q = CGI->new;
App->init;
App->relocate('/cgi-bin/app.cgi');
App->cgi($q);
DESCRIPTION
If all else fails, you can still deploy on good old CGI.
API
CGI -- The Lowest Common Demoninator
App->cgi($q)
Give the cgi
method a CGI object, and it will send the apps output to STDOUT.