mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-07 21:19:51 +00:00
15 lines
312 B
Go
15 lines
312 B
Go
// Package ui handles the PocketBase Admin frontend embedding.
|
|
package ui
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/pocketbase/pocketbase/apis"
|
|
)
|
|
|
|
//go:embed all:dist
|
|
var distDir embed.FS
|
|
|
|
// DistDirFS contains the embedded dist directory files (without the "dist" prefix)
|
|
var DistDirFS = apis.MustSubFS(distDir, "dist")
|