don't read the script, read the config lmao
This commit is contained in:
parent
9bee2e8212
commit
3f1051fc09
2
index.js
2
index.js
|
@ -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 });
|
||||||
|
|
Loading…
Reference in a new issue