2025-11-15 09:00:06 -06:00
|
|
|
// Package assets contains embedded static assets for the application.
|
|
|
|
|
package assets
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"embed"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var (
|
|
|
|
|
//go:embed "templates/*"
|
|
|
|
|
Templates embed.FS
|
|
|
|
|
//go:embed "css/*"
|
|
|
|
|
CSS embed.FS
|
2025-11-15 12:35:51 -06:00
|
|
|
//go:embed "fonts/*"
|
|
|
|
|
Fonts embed.FS
|
2025-11-24 21:34:15 -06:00
|
|
|
//go:embed "json/*"
|
|
|
|
|
JSON embed.FS
|
|
|
|
|
//go:embed "images/*"
|
|
|
|
|
Images embed.FS
|
2025-11-15 09:00:06 -06:00
|
|
|
)
|