Files

8 lines
191 B
TypeScript

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