We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d0bb9d commit 1a95d6fCopy full SHA for 1a95d6f
get_webhook.mjs set_webhook.mjsget_webhook.mjs renamed to set_webhook.mjs
@@ -12,5 +12,6 @@ const sha256 = async (text) =>
12
const base_url = process.argv[2];
13
const token = process.argv[3];
14
const path = await sha256(token);
15
-
16
-console.log(base_url + path);
+const url = base_url + path;
+console.log(url);
17
+fetch(url + '?command=set').then((response) => response.json()).then(console.log);
0 commit comments