9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
import { json } from "@lib/helpers.ts";
|
|
import { define } from "../../utils.ts";
|
|
|
|
export const handler = define.handlers({
|
|
GET() {
|
|
return json([]);
|
|
},
|
|
});
|