Skip to content

Instantly share code, notes, and snippets.

@kraih
Created July 10, 2010 21:58
Show Gist options
  • Save kraih/471064 to your computer and use it in GitHub Desktop.
Save kraih/471064 to your computer and use it in GitHub Desktop.
use Mojolicious::Lite;
get '/title' => sub {
my $self = shift;
my $url = $self->param('url');
$self->render(text =>
$self->client->get($url)->success->dom->at('title')->text);
};
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment