11 lines
186 B
Go
11 lines
186 B
Go
// Package web provides embedded static assets and templates.
|
|
package web
|
|
|
|
import "embed"
|
|
|
|
//go:embed all:templates
|
|
var TemplatesFS embed.FS
|
|
|
|
//go:embed all:static
|
|
var StaticFS embed.FS
|