Skip to content

Instantly share code, notes, and snippets.

@sharifulin
Created November 24, 2010 17:01
Show Gist options
  • Save sharifulin/713989 to your computer and use it in GitHub Desktop.
Save sharifulin/713989 to your computer and use it in GitHub Desktop.
Code of tochkak.ru
#!/usr/bin/env perl
use common::sense;
use Mojolicious::Lite;
get '/' => 'about/what' ;
get '/who' => 'about/who' ;
get '/what' => 'about/what' ;
get '/where' => 'about/where';
get '/code' => 'about/code' ;
app->log->level('error');
app->start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment