8 lines
201 B
TypeScript
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);
|
|
}
|