Esempio n. 1
0
func NewGossfile(sysGossfile system.Gossfile, ignoreList []string) *Gossfile {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}
}
Esempio n. 2
0
func NewGossfile(sysGossfile system.Gossfile) *Gossfile {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}
}
Esempio n. 3
0
func NewGossfile(sysGossfile system.Gossfile, config util.Config) (*Gossfile, error) {
	path := sysGossfile.Path()
	return &Gossfile{
		Path: path,
	}, nil
}