10 lines
122 B
Go
10 lines
122 B
Go
|
|
package web
|
||
|
|
|
||
|
|
import "embed"
|
||
|
|
|
||
|
|
//go:embed templates/*.html
|
||
|
|
var TemplateFS embed.FS
|
||
|
|
|
||
|
|
//go:embed static
|
||
|
|
var StaticFS embed.FS
|