feat: scaffold fission console with list and function CRUD/invoke APIs

This commit is contained in:
Naeel
2026-04-15 07:13:48 +03:00
parent 8c3385693f
commit 7e2278371a
4 changed files with 743 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
package ui
import (
"embed"
"net/http"
)
//go:embed index.html
var content embed.FS
func Handler() http.Handler {
return http.FileServer(http.FS(content))
}