()
| 107 | const keyChars = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 108 | |
| 109 | func init() { |
| 110 | rand.Seed(time.Now().UnixNano()) |
| 111 | } |
| 112 | |
| 113 | func GetRandomString(length int) string { |
| 114 | //rand.Seed(time.Now().UnixNano()) |
nothing calls this directly
no outgoing calls
no test coverage detected