shinroute / src /app /api /init /route.ts
shinmentakezo07
Add OmniRoute codebase without binary assets
9e4583c
Raw
History Blame Contribute Delete
228 Bytes
// Auto-initialize cloud sync when server starts
import "@/lib/initCloudSync";
// This API route is called automatically to initialize sync
export async function GET() {
return new Response("Initialized", { status: 200 });
}