Files
fission-console/console/ui/embed.go

14 lines
180 B
Go

package ui
import (
"embed"
"net/http"
)
//go:embed index.html cron.html css js
var content embed.FS
func Handler() http.Handler {
return http.FileServer(http.FS(content))
}