mirror of https://github.com/fatedier/frp.git
15 lines
154 B
Go
15 lines
154 B
Go
|
package frpc
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
|
||
|
"github.com/fatedier/frp/assets"
|
||
|
)
|
||
|
|
||
|
//go:embed static/*
|
||
|
var content embed.FS
|
||
|
|
||
|
func init() {
|
||
|
assets.Register(content)
|
||
|
}
|