1 Star 0 Fork 0

19173173892/filestash

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
embed.go 364 Bytes
一键复制 编辑 原始数据 按行查看 历史
package embed
import (
"embed"
"io/fs"
"net/http"
"os"
)
var (
//go:embed public
wwwPublic embed.FS
WWWPublic http.FileSystem = http.FS(os.DirFS("./public/"))
)
//go:embed server/plugin/index.go
var EmbedPluginList []byte
func init() {
if os.Getenv("DEBUG") != "true" {
fsPublic, _ := fs.Sub(wwwPublic, "public")
WWWPublic = http.FS(fsPublic)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/renfengge/filestash.git
git@gitee.com:renfengge/filestash.git
renfengge
filestash
filestash
master

搜索帮助