import { NextResponse } from "next/server"; import { syncOpenClawTasks } from "@/lib/openclaw-sync"; export async function POST() { return NextResponse.json(await syncOpenClawTasks()); }