mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-05-27 01:52:26 +02:00
ebe949e7f0
Signed-off-by: Ronni Skansing <rskansing@gmail.com>
15 lines
244 B
Go
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
|
|
}
|