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