mirror of
https://github.com/Fluffy-Bean/TastyBites.git
synced 2024-12-26 17:36:15 +00:00
13 lines
173 B
Go
13 lines
173 B
Go
package front
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
//go:generate npm run build
|
|
//go:embed dist
|
|
var dist embed.FS
|
|
|
|
var DistDir = echo.MustSubFS(dist, "dist") |