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