15 lines
304 B
Go
15 lines
304 B
Go
// Package ui handles the frontend embedding
|
|
package ui
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
)
|
|
|
|
//go:embed all:.output/public
|
|
var distDir embed.FS
|
|
|
|
// DistDirFS contains the embedded dist directory files (without the "dist" prefix)
|
|
var DistDirFS = echo.MustSubFS(distDir, ".output/public")
|