Files
phishingclub/backend/frontend/frontend.go
2025-10-07 21:49:38 +02:00

15 lines
244 B
Go

//go:build !dev
package frontend
import "embed"
//go:embed build/*
//go:embed all:build/_app
var content embed.FS
// GetEmbededFS returns the embeded file system that contains the frontend
func GetEmbededFS() *embed.FS {
return &content
}