9 lines
194 B
Go
9 lines
194 B
Go
// Package web provides the embedded frontend assets.
|
|
// Run `make frontend` (or `make all`) to rebuild before compiling the binary.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
//go:embed dist
|
|
var FS embed.FS
|