forked from rosa/hakurei
14 lines
351 B
Go
14 lines
351 B
Go
//go:build frontend && frontend_test
|
|
|
|
package ui
|
|
|
|
import "embed"
|
|
|
|
//go:generate tsc -p tsconfig.test.json
|
|
//go:generate cp index.html style.css favicon.ico static
|
|
//go:generate cp jstest/index.html jstest/style.css static/jstest
|
|
//go:generate sh -c "cp jstest/*.svg static/jstest"
|
|
//go:embed static
|
|
var _static embed.FS
|
|
var static = staticFS(_static)
|