- or download this
sub handler {
my $app = MyCGIAppSubclass->new;
$app->run;
}
- or download this
my $app = MyCGIAppSubclass->new;
sub handler {
$app->run;
}
- or download this
package CGI::Application::FastCGI;
use strict;
use base qw (CGI::Application);
...
}
1;