pcmt/embed.go
leo df0c280ad1
All checks were successful
continuous-integration/drone/push Build is passing
go: redo asset handling
* only embed substructure of assets
* create subfolders for css, imgs
* add .gitattributes file specifying pcmt.css as generated (by tailwind)
2023-05-08 00:13:33 +02:00

12 lines
132 B
Go

package main
import "embed"
var (
//go:embed all:templates
templates embed.FS
//go:embed all:assets/public
assets embed.FS
)