Files
eh-downloader/routes/api/deploy_id.ts
2023-06-12 12:35:59 +08:00

11 lines
303 B
TypeScript

import { Handlers } from "$fresh/server.ts";
export const handler: Handlers = {
GET(_req, _ctx) {
const data = { id: Deno.env.get("DENO_DEPLOYMENT_ID") };
return new Response(JSON.stringify(data), {
headers: { "Content-Type": "application/json" },
});
},
};