Guest User

Untitled

a guest
Jul 16th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. use Mojolicious::Lite;
  2.  
  3. get '/' => sub {
  4. shift->render_text('top');
  5. };
  6.  
  7. get '/hoge' => sub {
  8. shift->render_text('hogehoge');
  9. };
  10.  
  11. get '/fuga' => sub {
  12. shift->render_text('fugafuga');
  13. };
  14.  
  15. get '/hogefuga' => 'hogefuga';
  16.  
  17. app->start;
  18.  
  19. __DATA__
  20.  
  21. @@ hogefuga.html.ep
  22. hogehogefugafuga
Add Comment
Please, Sign In to add comment