Files
mailgoserver/internal/webui/embed.go
T
2026-08-12 12:56:22 +01:00

11 lines
320 B
Go

package webui
import "embed"
// assets embeds templates/ and static/ directly into the compiled binary, so
// mailgoserver is a genuinely standalone executable — it doesn't need to be run
// from a particular working directory or shipped alongside its source tree.
//
//go:embed templates static
var assets embed.FS