fiemwl / src /app /api /init /route.ts
automindy's picture
Upload 1980 files
6111b2b verified
Raw
History Blame Contribute Delete
266 Bytes
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 });
}