update distar url
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / CGI.pm
CommitLineData
0ba6e8aa 1package Catalyst::Script::CGI;
accb0640 2use Moose;
eefc03e1 3use namespace::clean -except => [ 'meta' ];
accb0640 4
c821df21 5sub _plack_engine_name { 'CGI' }
6
d3082fac 7with 'Catalyst::ScriptRole';
8
9__PACKAGE__->meta->make_immutable;
f4de8c99 101;
d3082fac 11
12=head1 NAME
13
14Catalyst::Script::CGI - The CGI Catalyst Script
15
16=head1 SYNOPSIS
17
3dcfb4c8 18 myapp_cgi.pl [options]
19
20 Options:
9c74923d 21 -? --help display this help and exits
d3082fac 22
23=head1 DESCRIPTION
accb0640 24
cbaaecc0 25This is a script to run the Catalyst engine specialized for the CGI environment.
8a289b5f 26
383c5be6 27=head1 SEE ALSO
28
29L<Catalyst::ScriptRunner>
30
d3082fac 31=head1 AUTHORS
8a289b5f 32
d3082fac 33Catalyst Contributors, see Catalyst.pm
accb0640 34
d3082fac 35=head1 COPYRIGHT
57dc50b0 36
d3082fac 37This library is free software. You can redistribute it and/or modify it under
38the same terms as Perl itself.
accb0640 39
d3082fac 40=cut