aboutsummaryrefslogtreecommitdiff
path: root/template/perl/base-psgi-hello.pl
blob: 59576e871ab5c6910d1416d0900c83a1cac0e1b7 (plain)
1
2
3
4
5
6
7
my $handler = sub {
    return [
        200,
        [ "Content-Type" => "text/plain", "Content-Length" => 11 ],
        [ "Hello World" ],
    ];
};