feat: update random name generator

This commit is contained in:
Rogee
2025-05-12 10:47:07 +08:00
parent bd9ab160c7
commit f8678c1197
3 changed files with 38 additions and 4 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
package utils
import "testing"
func TestNames_Random(t *testing.T) {
for i := 0; i < 10; i++ {
name := RandomNickname()
t.Logf("name: %s", name)
}
}