mirror of
https://github.com/ivuorinen/gibidify.git
synced 2026-01-26 03:24:05 +00:00
10 lines
313 B
Go
10 lines
313 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) {
|
|
w := NewProdWalker()
|
|
return w.Walk(root)
|
|
}
|