Shioriko/pkg/app/frontend_routes.go

14 lines
205 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00:00
package app
import (
"github.com/gin-gonic/gin"
)
func InitializeFrontendRoutes(g *gin.Engine) {
g.NoRoute(frontendHome)
}
func frontendHome(c *gin.Context) {
2023-08-30 14:23:08 +00:00
c.File("./web/static/index.html")
2021-05-09 15:07:23 +00:00
}