()
| 178 | } |
| 179 | |
| 180 | func uniquePart() string { |
| 181 | t := time.Now() |
| 182 | var b [3]byte |
| 183 | // Ignore read failures, just decreases uniqueness |
| 184 | rand.Read(b[:]) |
| 185 | return fmt.Sprintf("%d-%s", t.Nanosecond(), base64.URLEncoding.EncodeToString(b[:])) |
| 186 | } |
no test coverage detected
searching dependent graphs…