13 lines
230 B
Go
13 lines
230 B
Go
package files
|
|
|
|
import (
|
|
"codeberg.org/danjones000/strip-beats/config"
|
|
"path/filepath"
|
|
)
|
|
|
|
func GetCandidates() []string {
|
|
source := config.GetConfig().Source
|
|
ret, _ := filepath.Glob(filepath.Join(source, "*/*"))
|
|
|
|
return ret
|
|
}
|