(name string)
| 518 | } |
| 519 | |
| 520 | func dataPath(name string) string { |
| 521 | if dataDir == "" { |
| 522 | return name |
| 523 | } |
| 524 | return filepath.Join(dataDir, name) |
| 525 | } |
| 526 | |
| 527 | var downloadClient = &http.Client{Timeout: 30 * time.Second} |
| 528 |
no outgoing calls
no test coverage detected