Shioriko/pkg/app/frontend_routes.go

16 lines
218 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00:00
package app
import (
"net/http"
"github.com/gin-gonic/gin"
)
func InitializeFrontendRoutes(g *gin.Engine) {
g.NoRoute(frontendHome)
}
func frontendHome(c *gin.Context) {
c.Redirect(http.StatusFound, "/")
2021-05-09 15:07:23 +00:00
}