don't read the script, read the config lmao

This commit is contained in:
Aubrey 2025-01-26 13:21:21 -06:00
parent 9bee2e8212
commit 3f1051fc09
No known key found for this signature in database

View file

@ -2,7 +2,7 @@ import { WebhookClient } from "discord.js";
import { summary } from "./api.js"; import { summary } from "./api.js";
import { readFileSync } from "fs"; import { readFileSync } from "fs";
const config = readFileSync(process.argv[1], "utf-8"); const config = JSON.parse(readFileSync(process.argv[2], "utf-8"));
console.log(config); console.log(config);
const webhook = new WebhookClient({ url: config.webhook }); const webhook = new WebhookClient({ url: config.webhook });