Files
scheduler/config/route.go
2024-11-17 13:42:58 +08:00

13 lines
248 B
Go

package config
import (
"github.com/labstack/echo/v4"
"github.com/labstack/echo/v4/middleware"
)
func Route(app *echo.Echo) {
// here is the route for our site
staticFiles := app.Group("/")
staticFiles.Use(middleware.Static("./FrontEnd"))
}