mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-29 18:27:58 +08:00
go lint
This commit is contained in:
parent
891b301b06
commit
e15bb60ca6
@ -47,6 +47,8 @@ import (
|
||||
|
||||
//DefaultLocalhostListenerAddress -
|
||||
var DefaultLocalhostListenerAddress = "127.0.0.1"
|
||||
|
||||
// DefaultLocalhostListenerPort -
|
||||
var DefaultLocalhostListenerPort uint32 = 80
|
||||
|
||||
//CreateTCPListener listener builder
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user