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