summaryrefslogtreecommitdiffhomepage
path: root/test/perl/body_io_empty/psgi.pl
blob: 0a203dec91ef6762483a6383d6e39e96bf00886c (plain) (blame)
1
2
3
4
5
6
7
8
9
use IO::Handle;

my $app = sub {
    my ($environ) = @_;

    my $io = IO::Handle->new();

    return ['200', [], $io];
};