Shioriko/pkg/app/frontend_routes.go
2023-08-30 21:23:08 +07:00

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")
}