Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / Script / CGI.pm
CommitLineData
3fea05b9 1package Catalyst::Script::CGI;
2use Moose;
3BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
4use namespace::autoclean;
5
6with 'Catalyst::ScriptRole';
7
8__PACKAGE__->meta->make_immutable;
9
10=head1 NAME
11
12Catalyst::Script::CGI - The CGI Catalyst Script
13
14=head1 SYNOPSIS
15
16 myapp_cgi.pl [options]
17
18 Options:
19 -h --help display this help and exits
20
21=head1 DESCRIPTION
22
23This is a script to run the Catalyst engine specialized for the CGI environment.
24
25=head1 AUTHORS
26
27Catalyst Contributors, see Catalyst.pm
28
29=head1 COPYRIGHT
30
31This library is free software. You can redistribute it and/or modify it under
32the same terms as Perl itself.
33
34=cut