Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 6410479304d8e497e6ebcf2b088021d0 > files > 114

perl-Plack-1.2.900-2.1.mga4.noarch.rpm

use File::Basename;
my $path = $ENV{PSGI_IMAGE_FILE} || dirname(__FILE__) . "/../../share/baybridge.jpg";
my $handler = sub {
    open my $fh, "<:raw", $path or die $!;
    return [ 200, [ "Content-Type" => "image/jpeg", "X-Sendfile" => $path, "Content-Length" => -s $fh ], $fh ];
};