Files
SkunkyArt/static/templates.go
2025-04-07 13:53:47 +03:00

17 lines
199 B
Go
Executable File

//go:build embed
// +build embed
package static
import "embed"
//go:embed *
var Templates embed.FS
var Enabled bool = true
var StaticPath string
func CopyTemplatesToMemory() {
_ = StaticPath
}