Visit my blog or connect with me on Twitter
git init
or
#!/usr/bin/env perl | |
use Mojolicious::Lite -signatures; | |
get '/' => sub ($c) { | |
$c->render(template => 'index'); | |
}; | |
get '/api/:region' => sub ($c) { | |
my %regions = ( |
Visit my blog or connect with me on Twitter
git init
or