feat: add handlers to serve template and styles

This commit is contained in:
Stevan Freeborn
2025-11-15 09:00:06 -06:00
parent b42c63532f
commit 03cbe49a30
10 changed files with 225 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
// 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
)