コード例 #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
}