htmgo/templates/starter/assets.go
maddalax 1014f6c961 add htmx to window
small swap fix
copy public assets to dist if changed
2024-10-07 12:57:24 -05:00

13 lines
167 B
Go

//go:build !prod
// +build !prod
package main
import (
"io/fs"
"starter-template/internal/embedded"
)
func GetStaticAssets() fs.FS {
return embedded.NewOsFs()
}