handlers.go 342 B

1234567891011121314151617181920212223
  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/home.gohtml
  12. var Home string
  13. //go:embed templates/queue.gohtml
  14. var QueueGet string
  15. //go:embed templates/500.gohtml
  16. var Err500 string