1234567891011121314151617181920 |
- package front
- import (
- "embed"
- )
- //go:embed assets
- var Assets embed.FS
- //go:embed templates/confirm.gohtml
- var Confirm string
- //go:embed templates/flashes.gohtml
- var Flashes string
- //go:embed templates/queue.gohtml
- var QueueGet string
- //go:embed templates/500.gohtml
- var Err500 string
|