State | boolean | CB | CB Returning Future | CB Returning Future & taking Future |
---|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from Plack 1.0051 2024-01-05 | |
package Plack::App::WrapCGI; | |
use strict; | |
use warnings; | |
use parent qw(Plack::Component); | |
use Plack::Util::Accessor qw(script execute _app); | |
use File::Spec; | |
use CGI::Emulate::PSGI; | |
use CGI::Compile; | |
use Carp; |