mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
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)
|
||
|
}
|