Plack::Server::ServerSimple - DEPRECATED


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::Server::ServerSimple - DEPRECATED

DESCRIPTION

Top

DEPRECATED. Use Plack::Handler::HTTP::Server::Simple.


Plack documentation Contained in the Plack distribution.

package Plack::Server::ServerSimple;
use strict;
our $VERSION = '0.9980';
$VERSION = eval $VERSION;

use parent qw(Plack::Handler::HTTP::Server::Simple);
use Carp;

sub new {
    my $class = shift;
    Carp::carp "$class is deprecated. Use -s HTTP::Server::Simple";
    $class->SUPER::new(@_);
}

1;

__END__