Files
memorium/routes/api/index.ts

9 lines
160 B
TypeScript

import { Handlers } from "$fresh/server.ts";
import { json } from "@lib/helpers.ts";
export const handler: Handlers = {
GET() {
return json([]);
},
};