Shioriko/pkg/app/frontend_routes.go

14 lines
205 B
Go

package app
import (
"github.com/gin-gonic/gin"
)
func InitializeFrontendRoutes(g *gin.Engine) {
g.NoRoute(frontendHome)
}
func frontendHome(c *gin.Context) {
c.File("./web/static/index.html")
}