2023-10-20 10:13:39 -04:00

6 lines
142 B
TypeScript

import { jsonError } from "../common.js";
export async function onRequest(context: RequestContext) {
return jsonError("Not found", 404);
}