mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-07-08 01:31:00 +08:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { Handlers } from "$fresh/server.ts";
|
|
import { return_data } from "../../server/utils.ts";
|
|
|
|
export const handler: Handlers = {
|
|
GET(_req, _ctx) {
|
|
return return_data(true);
|
|
},
|
|
};
|