Files
scheduler/config/route.go

11 lines
163 B
Go

package config
import (
"github.com/labstack/echo/v4"
)
func Route(app *echo.Echo) {
// here is the route for our site
app.File("/", "FrontEnd/index.html")
}