|
Revision 255, 489 bytes
(checked in by eevee, 18 months ago)
|
|
Updated Catalyst scripts.
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' } |
|---|
| 4 | |
|---|
| 5 | use strict; |
|---|
| 6 | use warnings; |
|---|
| 7 | use FindBin; |
|---|
| 8 | use lib "$FindBin::Bin/../lib"; |
|---|
| 9 | use Vee; |
|---|
| 10 | |
|---|
| 11 | Vee->run; |
|---|
| 12 | |
|---|
| 13 | 1; |
|---|
| 14 | |
|---|
| 15 | =head1 NAME |
|---|
| 16 | |
|---|
| 17 | vee_cgi.pl - Catalyst CGI |
|---|
| 18 | |
|---|
| 19 | =head1 SYNOPSIS |
|---|
| 20 | |
|---|
| 21 | See L<Catalyst::Manual> |
|---|
| 22 | |
|---|
| 23 | =head1 DESCRIPTION |
|---|
| 24 | |
|---|
| 25 | Run a Catalyst application as a cgi script. |
|---|
| 26 | |
|---|
| 27 | =head1 AUTHOR |
|---|
| 28 | |
|---|
| 29 | Sebastian Riedel, C<sri@oook.de> |
|---|
| 30 | |
|---|
| 31 | =head1 COPYRIGHT |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | This library is free software, you can redistribute it and/or modify |
|---|
| 35 | it under the same terms as Perl itself. |
|---|
| 36 | |
|---|
| 37 | =cut |
|---|