From e229bcc9c747931ac0be47892c780520e467001c Mon Sep 17 00:00:00 2001 From: Mark Sagi-Kazar Date: Sat, 16 Nov 2019 00:55:26 +0100 Subject: [PATCH] Fix landing page --- internal/app/mga/landing/landingdriver/http_transport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/mga/landing/landingdriver/http_transport.go b/internal/app/mga/landing/landingdriver/http_transport.go index 9927604b..3455e23b 100644 --- a/internal/app/mga/landing/landingdriver/http_transport.go +++ b/internal/app/mga/landing/landingdriver/http_transport.go @@ -10,7 +10,7 @@ import ( // RegisterHTTPHandlers mounts the HTTP handler for the landing page in a router. func RegisterHTTPHandlers(router *mux.Router) { - router.Path("").Methods(http.MethodGet).HandlerFunc(Landing) + router.Path("/").Methods(http.MethodGet).HandlerFunc(Landing) } // Landing is the landing page for Modern Go Application.