6111b2b
1
2
3
4
5
6
7
8
import { ensureCloudSyncInitialized } from "@/lib/initCloudSync"; // This API route is called automatically to initialize sync export async function GET() { const initialized = await ensureCloudSyncInitialized(); return Response.json({ initialized }); }