mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-27 09:29:19 +08:00
fix: update some examples
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
// Supports: Node.js >= 18, Deno, Bun
|
||||
const pushURL = "https://example.com/api/push/key?status=up&msg=OK&ping=";
|
||||
const interval = 60;
|
||||
const method = "GET";
|
||||
|
||||
const push = async () => {
|
||||
await fetch(pushURL);
|
||||
await fetch(pushURL, { method });
|
||||
console.log("Pushed!");
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user