Files
fatedier 381245a439
golangci-lint / lint (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
build: add noweb tag to allow building without frontend assets (#5189)
2026-03-02 01:32:19 +08:00

17 lines
169 B
Go

//go:build !noweb
package frps
import (
"embed"
"github.com/fatedier/frp/assets"
)
//go:embed dist
var EmbedFS embed.FS
func init() {
assets.Register(EmbedFS)
}