mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-06-03 13:18:04 +02:00
14 lines
218 B
Go
14 lines
218 B
Go
//go:build !dev
|
|
|
|
package frontend
|
|
|
|
import "embed"
|
|
|
|
//go:embed build/*
|
|
var content embed.FS
|
|
|
|
// GetEmbededFS returns the embeded file system that contains the frontend
|
|
func GetEmbededFS() *embed.FS {
|
|
return &content
|
|
}
|