18 lines
258 B
Go
18 lines
258 B
Go
package ui
|
|
|
|
import "embed"
|
|
|
|
//go:embed html/*
|
|
var htmlFS embed.FS
|
|
|
|
func HTMLFS() embed.FS { return htmlFS }
|
|
|
|
//go:embed css/*
|
|
var cssFS embed.FS
|
|
|
|
func CSSFS() embed.FS { return cssFS }
|
|
|
|
//go:embed js/*
|
|
var jsFS embed.FS
|
|
|
|
func JSFS() embed.FS { return jsFS }
|