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