From 9eaf1d4dff803120d1fa716286b792997fcfa791 Mon Sep 17 00:00:00 2001 From: Manager Bot Date: Mon, 14 Nov 2022 17:02:53 +0000 Subject: [PATCH] Refactor root. --- Web/lib/MJB/Web/Controller/Root.pm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Web/lib/MJB/Web/Controller/Root.pm b/Web/lib/MJB/Web/Controller/Root.pm index 193c266..7340c52 100644 --- a/Web/lib/MJB/Web/Controller/Root.pm +++ b/Web/lib/MJB/Web/Controller/Root.pm @@ -3,12 +3,19 @@ use Mojo::Base 'Mojolicious::Controller', -signatures; use Try::Tiny; use DateTime; +#== +# GET / | show_homepage +#== sub index ( $c ) { } +#== +# GET /about | show_about +#== sub about ( $c ) { } -sub pricing ( $c ) { } - +#== +# GET /contact | show_contact +#== sub contact ( $c ) { } 1;