Add catchall api route

This commit is contained in:
regalijan 2023-10-20 10:13:39 -04:00
parent 748aa0e120
commit 91d00eec57
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

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