Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/proc/self/root/usr/share/doc/perl-Test-LWP-UserAgent/examples/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/usr/share/doc/perl-Test-LWP-UserAgent/examples/myapp.psgi

use strict;
use warnings;

sub {
    my $env = shift;

    return [
        200,
        [ 'Content-Type' => 'text/plain' ],
        [ 'You sent me the path ' . $env->{PATH_INFO} . '.' ],
    ];
}