Files
gibidify/fileproc/collector.go
Ismo Vuorinen b9e2218305 Initial commit
2025-02-07 09:46:31 +02:00

10 lines
320 B
Go

// Package fileproc provides functions for collecting and processing files.
package fileproc
// CollectFiles scans the given root directory using the default walker (ProdWalker)
// and returns a slice of file paths.
func CollectFiles(root string) ([]string, error) {
var w Walker = ProdWalker{}
return w.Walk(root)
}