11 lines
320 B
Go
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
|