예제 #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
}