(filePath: string)
| 102 | } |
| 103 | |
| 104 | function computeFileHash(filePath: string): string { |
| 105 | const content = readFileSync(filePath); |
| 106 | return createHash('sha256').update(content).digest('hex'); |
| 107 | } |
| 108 | |
| 109 | // API operations |
| 110 | async function uploadFile( |
no test coverage detected