mirror of
https://github.com/certimate-go/certimate.git
synced 2026-08-29 02:02:04 +08:00
13 lines
165 B
Go
13 lines
165 B
Go
package ui
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/pocketbase/pocketbase/apis"
|
|
)
|
|
|
|
//go:embed all:dist
|
|
var distDir embed.FS
|
|
|
|
var DistDirFS = apis.MustSubFS(distDir, "dist")
|