Documentation dinks
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / CGI.pm
1 package Catalyst::Script::CGI;
2 use Moose;
3 BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
4 use namespace::autoclean;
5
6 with 'Catalyst::ScriptRole';
7
8 __PACKAGE__->meta->make_immutable;
9
10 =head1 NAME
11
12 Catalyst::Script::CGI - The CGI Catalyst Script
13
14 =head1 SYNOPSIS
15
16 See L<Catalyst>.
17
18 =head1 DESCRIPTION
19
20 This is a script to run the Catalyst engine specialized for the CGI environment.
21
22 =head1 AUTHORS
23
24 Catalyst Contributors, see Catalyst.pm
25
26 =head1 COPYRIGHT
27
28 This library is free software. You can redistribute it and/or modify it under
29 the same terms as Perl itself.
30
31 =cut