Files
crossfade/app/api/system/check-tools/route.ts
T

8 lines
201 B
TypeScript

import { checkTools } from '@/lib/tool-check';
import { NextResponse } from 'next/server';
export async function GET() {
const result = await checkTools();
return NextResponse.json(result);
}