(files []fs.DirEntry)
| 627 | } |
| 628 | |
| 629 | func SortFileNameDescend(files []fs.DirEntry) { |
| 630 | sort.Slice(files, func(i, j int) bool { |
| 631 | return files[i].Name() > files[j].Name() |
| 632 | }) |
| 633 | } |
| 634 | |
| 635 | // Read and merge all files in the specified directory matching the supplied suffix |
| 636 | func readConfigFilesForDir(fsys fs.FS, logPrefix string, dirName string, fileName string, simpleMerge bool) (waveobj.MetaMapType, []ConfigError) { |
no test coverage detected