This commit is contained in:
GLYASAI 2021-05-20 13:49:19 +08:00
parent 891b301b06
commit e15bb60ca6
2 changed files with 6 additions and 3 deletions

View File

@ -47,6 +47,8 @@ import (
//DefaultLocalhostListenerAddress -
var DefaultLocalhostListenerAddress = "127.0.0.1"
// DefaultLocalhostListenerPort -
var DefaultLocalhostListenerPort uint32 = 80
//CreateTCPListener listener builder

View File

@ -35,23 +35,24 @@ var (
root = ""
)
// 设置扩展标识,如果不设置,默认为 '@extend:'
// SetExtendTag 设置扩展标识,如果不设置,默认为 '@extend:'
func SetExtendTag(tag string) {
extendTag = tag
}
// SetRoot -
func SetRoot(r string) {
root = r
}
// 设置当前路径标识,如果不设置,默认为 '@pwd@'
// SetPathTag 设置当前路径标识,如果不设置,默认为 '@pwd@'
// @pwd@ 会被替换成当前文件的路径,
// 至于是绝对路径还是相对路径,取决于读取文件时,传入的是绝对路径还是相对路径
func SetPathTag(tag string) {
pwdTag = tag
}
//加载json可配置扩展字段配置文件
// LoadExtendConf 加载json可配置扩展字段配置文件
func LoadExtendConf(filePath string, v interface{}) error {
data, err := extendFile(filePath)
if err != nil {