mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
16 lines
142 B
Go
16 lines
142 B
Go
package ui
|
|
|
|
import (
|
|
"embed"
|
|
"io/fs"
|
|
)
|
|
|
|
//go:embed dist/*
|
|
var ui embed.FS
|
|
|
|
func UI() fs.FS {
|
|
fsys, _ := fs.Sub(ui, "dist")
|
|
|
|
return fsys
|
|
}
|