1 Star 1 Fork 1

Mr.K/goo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
config.go 955 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mr.K 提交于 2020-05-07 22:22 . init git
package goo
import (
"strings"
"sync"
)
var config *Config
var onceConfig sync.Once
type ConfigInterface interface {
ConfigConstant(config *Config)
ConfigPlugin()
ConfigRoute(routes *Routes)
ConfigInterceptor()
AfterStart()
}
type Config struct {
StaticDir map[string]string
}
func ConfigInstance() *Config {
onceConfig.Do(func() {
config = &Config{StaticDir: make(map[string]string)}
})
return config
}
func (config *Config) SetStaticMapping(staticPrefix string, staticDir string) {
config.StaticDir[staticPrefix] = staticDir
RoutesInstance().Get(staticPrefix, staticHandle)
}
func (config *Config) SetStaticPath(staticDir string) {
staticDir = strings.ReplaceAll(staticDir, "\\", "/")
staticDir = strings.TrimRight(staticDir, "/")
index := strings.LastIndex(staticDir, "/")
if index < 0 {
staticDir = "/" + staticDir
index = 0
}
staticPrefix := staticDir[index:]
config.SetStaticMapping(staticPrefix+"/**", staticDir)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/roseboy/goo.git
git@gitee.com:roseboy/goo.git
roseboy
goo
goo
master

搜索帮助