templates.go 199 B

1234567891011121314151617
  1. //go:build embed
  2. // +build embed
  3. package static
  4. import "embed"
  5. //go:embed *
  6. var Templates embed.FS
  7. var Enabled bool = true
  8. var StaticPath string
  9. func CopyTemplatesToMemory() {
  10. _ = StaticPath
  11. }