Initial commit

This commit is contained in:
Victor Lacasse-Beaudoin 2025-02-27 14:13:21 -05:00
commit 02947128bc
24 changed files with 1126 additions and 0 deletions

13
ui/embed.go Normal file
View file

@ -0,0 +1,13 @@
package ui
import "embed"
//go:embed *.html
var htmlFS embed.FS
func HTMLFS() embed.FS { return htmlFS }
//go:embed js/*.js
var jsFS embed.FS
func JSFS() embed.FS { return jsFS }