summaryrefslogtreecommitdiffhomepage
path: root/test/perl/header_pairs/psgi.pl
blob: 63d241bc29ee72dbd55e937b7c1cfa6cb1794ef1 (plain) (blame)
1
2
3
4
5
my $app = sub {
    my ($environ) = @_;

    return ['200', ['Content-Length', 0, 'blah', 'blah'], []];
};