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