files.go 234 B

123456789101112131415
  1. package assets
  2. import (
  3. "embed"
  4. "io/fs"
  5. )
  6. //go:embed static
  7. var _publicFS embed.FS
  8. //go:embed templates
  9. var _templateFS embed.FS
  10. var PublicFS, _ = fs.Sub(_publicFS, "static")
  11. var TemplateFS, _ = fs.Sub(_templateFS, "templates")