(ext: string)
| 19 | import { buildPullUrl, NOOP_LOGGER } from '@openchatlab/sync' |
| 20 | |
| 21 | function getTempFilePath(ext: string): string { |
| 22 | const id = crypto.randomBytes(8).toString('hex') |
| 23 | return path.join(getTempDir(), `pull-import-${id}${ext}`) |
| 24 | } |
| 25 | |
| 26 | // ==================== ElectronFetcher ==================== |
| 27 |
no test coverage detected