Skip to content

Instantly share code, notes, and snippets.

@Svetixbot
Created June 29, 2017 07:26
Show Gist options
  • Save Svetixbot/d723edfd06045bbf1f2e0925c6a2f40c to your computer and use it in GitHub Desktop.
Save Svetixbot/d723edfd06045bbf1f2e0925c6a2f40c to your computer and use it in GitHub Desktop.
const pool = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
func generateId(n int) string {
b := make([]byte, n)
for i := range b {
b[i] = pool[rand.Intn(len(pool))]
}
return string(b)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment