We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c41fe8f commit a97ee49Copy full SHA for a97ee49
src/index.ts
@@ -60,6 +60,13 @@ router.post("/profile/blocked", sendProfileBlockedMessage);
60
61
router.post("/task/update", sendTaskUpdatesHandler);
62
63
+router.get("/ankush", async (request, env, ctx: ExecutionContext) => {
64
+ ctx.waitUntil(send(env));
65
+
66
+ return new JSONResponse(`CURRENT_ENVIRONMENT: ${env.CURRENT_ENVIRONMENT}`, { status: 200 });
67
+});
68
69
70
router.post("/", async (request, env, ctx: ExecutionContext) => {
71
const message: discordMessageRequest = await request.json();
72
0 commit comments