Files
koc-loop/instrumentation.ts
2026-08-11 23:07:26 +08:00

6 lines
172 B
TypeScript

export async function register() {
if (process.env.NEXT_RUNTIME !== "nodejs") return;
const { startScheduler } = await import("./lib/scheduler");
startScheduler();
}