This avoids inadvertently exporting a go package. This change also cleans up generate layout. Signed-off-by: Ophestra <cat@gensokyo.uk>
11 lines
151 B
Go
11 lines
151 B
Go
//go:build frontend
|
|
|
|
package ui
|
|
|
|
import "embed"
|
|
|
|
//go:generate tsc
|
|
//go:generate cp index.html style.css static
|
|
//go:embed static
|
|
var content embed.FS
|