removed not needed

This commit is contained in:
Ben
2024-03-27 22:40:26 -04:00
parent f1ed94651b
commit 1cbbaec2dd

View File

@@ -1,16 +0,0 @@
// import * as fs from 'fs';
// import * as crypto from 'crypto';
// import path from 'path';
// const filePath = path.resolve('extraResources/Wow.exe'); // Replace with the path to your file
// const fileStream = fs.createReadStream(filePath);
// const hash = crypto.createHash('md5');
// fileStream.on('data', (data) => {
// hash.update(data);
// });
// fileStream.on('end', () => {
// const md5Hash = hash.digest('hex');
// console.log(`MD5 hash of the file: ${md5Hash}`);
// });