Files
plumber/embed.go

13 lines
196 B
Go

package plumber
import "embed"
//go:embed templates/*.html templates/partials/*.html
var TemplateFS embed.FS
//go:embed static
var StaticFS embed.FS
//go:embed schema.sql
var SchemaSQL string