| Plack documentation | Contained in the Plack distribution. |
Plack::Server::ServerSimple - DEPRECATED
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__