From ba585a61797fecf96ad74b1eee9b39e3e8d500ae Mon Sep 17 00:00:00 2001 From: Rawley Fowler Date: Mon, 9 May 2022 19:33:20 -0600 Subject: [PATCH] registered music group --- bootstrap/routes.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap/routes.go b/bootstrap/routes.go index 19b58ec..911ceed 100644 --- a/bootstrap/routes.go +++ b/bootstrap/routes.go @@ -33,6 +33,8 @@ func InitializeRoutes(router *gin.Engine) { controllers.RegisterBlogGroup(blogGroup) adminGroup := router.Group("/admin") controllers.RegisterAdminGroup(adminGroup) + musicGroup := router.Group("/music") + controllers.RegisterMusicGroup(musicGroup) // Static routes that serve the same html every time. router.GET("/", utils.ServePage("index.tmpl")) router.GET("/resume", utils.ServePage("resume.tmpl"))