Plack::Server::Apache1 - DEPRECATED


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::Server::Apache1 - DEPRECATED

DESCRIPTION

Top

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__