chore: delete old dummy data for compliances dashboard

This commit is contained in:
Pablo Lara
2024-11-16 21:13:41 +01:00
parent d1424b3c9c
commit e92bbffc53
3 changed files with 0 additions and 487 deletions
-10
View File
@@ -1,10 +0,0 @@
import { NextResponse } from "next/server";
import data from "../../../dataCompliance.json";
export async function GET() {
// Simulate fetching data with a delay
await new Promise((resolve) => setTimeout(resolve, 2000));
return NextResponse.json({ compliance: data });
}