Skip to content

Instantly share code, notes, and snippets.

Created February 19, 2016 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/48f0302044ee548aa22f to your computer and use it in GitHub Desktop.
Save anonymous/48f0302044ee548aa22f to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
use Plack::Builder;
get '/welcome' => sub {
my $c = shift;
$c->render(text => $c->req->url->to_abs);
};
builder {
app->start;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment