frp/assets/frps/embed.go
bobo liu f773f85f8a Get rid of ugly statik
go1.16 introduced the embed package, it's the more graceful solution for embedding file into binary.
https://golang.org/pkg/embed/
2021-08-17 15:38:59 +08:00

15 lines
147 B
Go

package frpc
import (
"embed"
"github.com/fatedier/frp/assets"
)
//go:embed *
var content embed.FS
func init() {
assets.Register(content)
}