Files
nginx-unit/test/perl/header_pairs/psgi.pl
2018-02-12 19:32:54 +03:00

6 lines
107 B
Raku

my $app = sub {
my ($environ) = @_;
return ['200', ['Content-Length', 0, 'blah', 'blah'], []];
};