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.
2 parents c41fe8f + a97ee49 commit 73a9f85Copy full SHA for 73a9f85
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