handlers.go 292 B

1234567891011121314151617181920
  1. package front
  2. import (
  3. "embed"
  4. )
  5. //go:embed assets
  6. var Assets embed.FS
  7. //go:embed templates/confirm.gohtml
  8. var Confirm string
  9. //go:embed templates/flashes.gohtml
  10. var Flashes string
  11. //go:embed templates/queue.gohtml
  12. var QueueGet string
  13. //go:embed templates/500.gohtml
  14. var Err500 string