Skip to content
This repository was archived by the owner on Mar 17, 2020. It is now read-only.

Commit e229bcc

Browse files
committed
Fix landing page
1 parent 06a961e commit e229bcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/app/mga/landing/landingdriver/http_transport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
// RegisterHTTPHandlers mounts the HTTP handler for the landing page in a router.
1212
func RegisterHTTPHandlers(router *mux.Router) {
13-
router.Path("").Methods(http.MethodGet).HandlerFunc(Landing)
13+
router.Path("/").Methods(http.MethodGet).HandlerFunc(Landing)
1414
}
1515

1616
// Landing is the landing page for Modern Go Application.

0 commit comments

Comments
 (0)