chore: remove cron

This commit is contained in:
iCrawl
2023-05-05 21:21:09 +02:00
parent 6b2c3fb9d0
commit e53b94c979
2 changed files with 3 additions and 29 deletions

View File

@@ -1,29 +0,0 @@
import { get } from '@vercel/edge-config';
import { NextResponse } from 'next/server';
export const runtime = 'edge';
export async function GET() {
try {
const url = await get<string>('DISCORD_WEBHOOK_URL');
const imageUrl = await get<string>('IT_IS_WEDNESDAY_MY_DUDES');
if (url && imageUrl) {
await fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
username: 'It is wednesday, my dudes',
embeds: [
{
image: {
url: imageUrl,
},
},
],
}),
});
}
} catch {}
return NextResponse.json({ message: 'It is wednesday, my dudes' });
}