mirror of
https://github.com/JetSprow/J-Board-Lite.git
synced 2026-05-01 01:14:10 +05:30
7 lines
214 B
TypeScript
7 lines
214 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === "nodejs") {
|
|
const { startTrafficSyncScheduler } = await import("./services/traffic-sync-scheduler");
|
|
startTrafficSyncScheduler();
|
|
}
|
|
}
|