Created
November 24, 2010 17:01
-
-
Save sharifulin/713989 to your computer and use it in GitHub Desktop.
Code of tochkak.ru
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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