
Catalyst::Engine::CGI - The CGI Engine

A script using the Catalyst::Engine::CGI module might look like:
#!/usr/bin/perl -w
use strict;
use lib '/path/to/MyApp/lib';
use MyApp;
MyApp->run;
The application module (MyApp) would use Catalyst, which loads the appropriate engine module.

This is the Catalyst engine specialized for the CGI environment.

This class overloads some methods from Catalyst::Engine.
Enable autoflush on the output handle for CGI-based engines.


Sebastian Riedel, <sri@cpan.org>
Christian Hansen, <ch@ngmedia.com>
Andy Grundman, <andy@hybridized.org>

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.