mirror of
https://github.com/status-im/status-console-client.git
synced 2025-02-24 16:48:09 +00:00
9 lines
126 B
Go
9 lines
126 B
Go
|
package adapters
|
||
|
|
||
|
import "math/rand"
|
||
|
|
||
|
func randomItem(items []string) string {
|
||
|
l := len(items)
|
||
|
return items[rand.Intn(l)]
|
||
|
}
|