bitmagnet/webui/embed.go
mgdigital 309e3b892b
Some checks are pending
Checks / lint (push) Waiting to run
Checks / test (push) Waiting to run
Checks / generated (push) Waiting to run
CodeQL / Analyze (go) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Webui revamp (#280)
2024-10-14 17:04:28 +01:00

11 lines
136 B
Go

package webui
import "embed"
//go:embed dist/bitmagnet/browser/*
var staticFS embed.FS
func StaticFS() embed.FS {
return staticFS
}