mirror of
https://github.com/fatedier/frp.git
synced 2026-03-08 02:49:10 +08:00
17 lines
169 B
Go
17 lines
169 B
Go
//go:build !noweb
|
|
|
|
package frpc
|
|
|
|
import (
|
|
"embed"
|
|
|
|
"github.com/fatedier/frp/assets"
|
|
)
|
|
|
|
//go:embed dist
|
|
var EmbedFS embed.FS
|
|
|
|
func init() {
|
|
assets.Register(EmbedFS)
|
|
}
|