diff --git a/www-swagg.pl b/www-swagg.pl index c899beb..2733595 100755 --- a/www-swagg.pl +++ b/www-swagg.pl @@ -9,4 +9,16 @@ get '/' => sub { $c->render(fortune => $fortune) } => 'index'; +get '/me' => sub { + my ($c) = @_; + + $c->render(); +}; + +get '/news' => sub { + my ($c) = @_; + + $c->render(); +}; + app->start();