Files
openclaw-taskboard/app/api/sync/openclaw/route.ts

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());
}