Fix: tool description

This commit is contained in:
Grail Finder
2025-05-01 07:08:03 +03:00
parent d2e4846835
commit 10cca9037f
3 changed files with 38 additions and 20 deletions

11
extra/twentyq.go Normal file
View File

@@ -0,0 +1,11 @@
package extra
import "math/rand"
var (
chars = []string{"Shrek", "Garfield", "Jack the Ripper"}
)
func GetRandomChar() string {
return chars[rand.Intn(len(chars))]
}