| Plack documentation | Contained in the Plack distribution. |
Plack::Server::Apache1 - DEPRECATED
This module is deprecated. See Plack::Handler::Apache1.
| Plack documentation | Contained in the Plack distribution. |
package Plack::Server::Apache1; use strict; use parent qw(Plack::Handler::Apache1); use Carp; sub new { my $class = shift; Carp::carp "Use of $class is deprecated. Use Plack::Handler::Apache1 or Plack::Loader to upgrade."; $class->SUPER::new(@_); } 1; __END__