mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 12:35:03 +08:00
13 lines
248 B
Go
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"))
|
|
}
|