stashing code

This commit is contained in:
user
2025-10-20 17:07:41 +03:00
commit f5b99afc8f
890 changed files with 54823 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Logger } from "@pkg/logger";
import type { LogEntry } from "@pkg/logger/client";
import type { RequestHandler } from "@sveltejs/kit";
export const POST: RequestHandler = async ({ request }) => {
const payload = (await request.json()) as LogEntry;
Logger.info("From the frontend");
Logger.info(payload);
return new Response(null, { status: 200 });
};