strip-beats/files/pick.go

11 lines
144 B
Go
Raw Permalink Normal View History

2023-08-29 15:12:26 -05:00
package files
import "math/rand"
func PickRandomFile() string {
files := GetCandidates()
idx := rand.Intn(len(files))
return files[idx]
}