Refactor root.

master
Manager Bot 3 years ago
parent 7aa0ac6f43
commit 9eaf1d4dff
  1. 11
      Web/lib/MJB/Web/Controller/Root.pm

@ -3,12 +3,19 @@ use Mojo::Base 'Mojolicious::Controller', -signatures;
use Try::Tiny; use Try::Tiny;
use DateTime; use DateTime;
#==
# GET / | show_homepage
#==
sub index ( $c ) { } sub index ( $c ) { }
#==
# GET /about | show_about
#==
sub about ( $c ) { } sub about ( $c ) { }
sub pricing ( $c ) { } #==
# GET /contact | show_contact
#==
sub contact ( $c ) { } sub contact ( $c ) { }
1; 1;

Loading…
Cancel
Save