|
|
@ -1,10 +1,9 @@
|
|
|
|
// Supports: Node.js >= 18, Deno, Bun
|
|
|
|
// Supports: Node.js >= 18, Deno, Bun
|
|
|
|
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
|
|
|
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
|
|
|
const interval = 60;
|
|
|
|
const interval = 60;
|
|
|
|
const method = "GET";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const push = async () => {
|
|
|
|
const push = async () => {
|
|
|
|
await fetch(pushURL, { method });
|
|
|
|
await fetch(pushURL);
|
|
|
|
console.log("Pushed!");
|
|
|
|
console.log("Pushed!");
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|