Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-Mojolicious/examples/
Upload File :
Current File : //usr/share/doc/perl-Mojolicious/examples/fast.pl

#
# Fast "Hello World" application for profiling the HTTP stack
#
use Mojo::Base 'Mojolicious';

sub handler {
  my $tx = pop;
  $tx->res->code(200)->body('Hello World!');
  $tx->resume;
}

__PACKAGE__->new->start;