mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2025-12-28 06:34:17 +00:00
11 lines
136 B
Go
11 lines
136 B
Go
package webui
|
|
|
|
import "embed"
|
|
|
|
//go:embed dist/bitmagnet/browser/*
|
|
var staticFS embed.FS
|
|
|
|
func StaticFS() embed.FS {
|
|
return staticFS
|
|
}
|