示例#1
0
文件: gossfile.go 项目: netluxe/goss
func NewGossfile(sysGossfile system.Gossfile, ignoreList []string) *Gossfile {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}
}
示例#2
0
文件: gossfile.go 项目: postfix/goss
func NewGossfile(sysGossfile system.Gossfile) *Gossfile {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}
}
示例#3
0
文件: gossfile.go 项目: ryancox/goss
func NewGossfile(sysGossfile system.Gossfile, config util.Config) (*Gossfile, error) {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}, nil
}