11 lines
260 B
Go
11 lines
260 B
Go
package webui
|
|
|
|
import "embed"
|
|
|
|
// Dist contains the production frontend assets. They are compiled into the Go
|
|
// binary, so running Neural Hunt does not require Node.js, npm, Vite, or a
|
|
// separate static-file directory.
|
|
//
|
|
//go:embed dist/*
|
|
var Dist embed.FS
|