import { jsonError } from "../common.js";

export async function onRequest(context: RequestContext) {
  return jsonError("Not found", 404);
}