Reworked Engine namespaces
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / FCGI.pm
CommitLineData
ffb41d94 1package Catalyst::Engine::FCGI;
2
3use strict;
c2e8e6fa 4use base qw(Catalyst::Engine::FCGI::Base Catalyst::Engine::CGI);
ffb41d94 5
6=head1 NAME
7
8Catalyst::Engine::FCGI - Catalyst FCGI Engine
9
10=head1 SYNOPSIS
11
c9afa5fc 12A script using the Catalyst::Engine::FCGI module might look like:
13
14 #!/usr/bin/perl -w
15
16 BEGIN {
17 $ENV{CATALYST_ENGINE} = 'FCGI';
18 }
19
20 use strict;
21 use lib '/path/to/MyApp/lib';
22 use MyApp;
23
24 MyApp->run;
ffb41d94 25
26=head1 DESCRIPTION
27
28This is the Catalyst engine for FastCGI.
29
ffb41d94 30=head1 SEE ALSO
31
c2e8e6fa 32L<Catalyst>, L<Catalyst::Engine::CGI>.
ffb41d94 33
34=head1 AUTHOR
35
36Sebastian Riedel, C<sri@cpan.org>
c2e8e6fa 37Christian Hansen, C<ch@ngmedia.com>
ffb41d94 38
39=head1 COPYRIGHT
40
41This program is free software, you can redistribute it and/or modify it under
42the same terms as Perl itself.
43
44=cut
45
461;