Plack::Server::CGI - DEPRECATED


Plack documentation Contained in the Plack distribution.

Index


Code Index:

NAME

Top

Plack::Server::CGI - DEPRECATED

DESCRIPTION

Top

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__