leo
df0c280ad1
All checks were successful
continuous-integration/drone/push Build is passing
* only embed substructure of assets * create subfolders for css, imgs * add .gitattributes file specifying pcmt.css as generated (by tailwind)
12 lines
132 B
Go
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
|
|
)
|