Spaces:
Paused
Paused
Update src/main.tsx
Browse files- src/main.tsx +1 -1
src/main.tsx
CHANGED
@@ -84,7 +84,7 @@ Deno.cron('follow', '0 0 * * *', async () => {
|
|
84 |
console.log('Number of users followed:', count);
|
85 |
});
|
86 |
|
87 |
-
Deno.cron('test', '*
|
88 |
const host = 'https://' + Deno.env.get('SPACE_HOST');
|
89 |
const res = await fetch(host, { method: 'POST' });
|
90 |
console.log(await res.text());
|
|
|
84 |
console.log('Number of users followed:', count);
|
85 |
});
|
86 |
|
87 |
+
Deno.cron('test', '* * * * *', async () => {
|
88 |
const host = 'https://' + Deno.env.get('SPACE_HOST');
|
89 |
const res = await fetch(host, { method: 'POST' });
|
90 |
console.log(await res.text());
|