diff options
| author | Dhravya <[email protected]> | 2024-06-24 22:11:05 -0500 |
|---|---|---|
| committer | Dhravya <[email protected]> | 2024-06-24 22:11:05 -0500 |
| commit | dcf5cffdf0a90318f9408115b7446c5669c3611a (patch) | |
| tree | 594e7cb09f57aa0089ab2302a7488d5f9bf05677 /apps/web/app | |
| parent | fix: redirect if not logged in (diff) | |
| download | supermemory-dcf5cffdf0a90318f9408115b7446c5669c3611a.tar.xz supermemory-dcf5cffdf0a90318f9408115b7446c5669c3611a.zip | |
use gpt-4o again, responses are considerably better.
Diffstat (limited to 'apps/web/app')
| -rw-r--r-- | apps/web/app/api/telegram/route.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/web/app/api/telegram/route.ts b/apps/web/app/api/telegram/route.ts index 59177c4e..000b473a 100644 --- a/apps/web/app/api/telegram/route.ts +++ b/apps/web/app/api/telegram/route.ts @@ -107,3 +107,7 @@ bot.on("message", async (ctx) => { }); export const POST = webhookCallback(bot, "std/http"); + +export const GET = async () => { + return new Response("OK", { status: 200 }); +}; |