Last active
June 13, 2016 13:57
-
-
Save kraih/1368085 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Mojolicious::Lite; | |
get '/delay' => sub { | |
my $self = shift; | |
Mojo::IOLoop->timer(3 => sub { | |
$self->render_text('Delayed for 3 seconds.'); | |
}); | |
}; | |
get '/nodelay' => sub { | |
my $self = shift; | |
$self->render_text('No delay.'); | |
}; | |
app->start; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment