socket-bot/ica-rs/plugins/md5/runs.ts

16 lines
336 B
TypeScript
Raw Normal View History

2024-05-09 00:27:45 +08:00
const fs = require('fs');
const path = require('path');
2024-05-09 00:34:07 +08:00
import { fight } from "./md5-api.cts";
2024-05-09 00:27:45 +08:00
// 从文件的 ./input.txt 中读取输入
// 然后丢给 md5.js
async function main() {
const input = fs.readFileSync(path.join(__dirname, 'input.txt'), 'utf8');
const result = await fight(input);
console.log(result);
}
main();