mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 20:45:05 +08:00
11 lines
163 B
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")
|
|
}
|