unit/test/perl/streaming_body/psgi.pl

13 lines
270 B
Perl

my $app = sub {
my ($environ) = @_;
return sub {
my $writer = (my $responder = shift)->([200, [
'Content-Type' => 'text/plain',
'Content-Length' => '12'
]]);
$writer->write("Hello World!");
$writer->close;
};
};