feat(cursor): Add cursor Provider
This commit is contained in:
13
src/app/api/usage/request-logs/route.js
Normal file
13
src/app/api/usage/request-logs/route.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import { NextResponse } from "next/server";
|
||||
import { getRecentLogs } from "@/lib/usageDb";
|
||||
|
||||
export async function GET() {
|
||||
try {
|
||||
const logs = await getRecentLogs(200);
|
||||
return NextResponse.json(logs);
|
||||
} catch (error) {
|
||||
console.error("[API ERROR] /api/usage/logs failed:", error);
|
||||
console.error("[API ERROR] Stack:", error?.stack);
|
||||
return NextResponse.json({ error: "Failed to fetch logs" }, { status: 500 });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user