feat: add handlers to serve template and styles
This commit is contained in:
@@ -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
|
||||
)
|
||||
Reference in New Issue
Block a user