chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,23 @@
import type { ActionFunctionArgs } from "@remix-run/server-runtime";
import { logger } from "~/services/logger.server";
import { reportComputeUsage } from "~/services/platform.v3.server";
export async function action({ request }: ActionFunctionArgs) {
// Ensure this is a POST request
if (request.method.toUpperCase() !== "POST") {
return { status: 405, body: "Method Not Allowed" };
}
try {
const result = await reportComputeUsage(request);
if (result === undefined) {
return new Response(null, { status: 500 });
}
return result;
} catch (e) {
logger.error("Error reporting compute usage", { error: e });
return new Response(null, { status: 500 });
}
}