mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-10 15:48:46 +08:00
10 lines
265 B
TypeScript
10 lines
265 B
TypeScript
import { Handlers } from "$fresh/server.ts";
|
|
import { return_json } from "../../server/utils.ts";
|
|
|
|
export const handler: Handlers = {
|
|
GET(_req, _ctx) {
|
|
const data = { id: Deno.env.get("DENO_DEPLOYMENT_ID") };
|
|
return return_json(data);
|
|
},
|
|
};
|