Skip to content

Instantly share code, notes, and snippets.

@kraih
Created February 1, 2011 20:11
Show Gist options
  • Save kraih/806565 to your computer and use it in GitHub Desktop.
Save kraih/806565 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use Mojolicious::Lite;
use Plack::Builder;
get '/welcome' => sub {
my $self = shift;
$self->render(text => 'Hello Mojo!');
};
builder {
enable 'Deflater';
app->start;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment