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