9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import { NextResponse } from "next/server";
|
|
import { getBackend } from "@/lib/backend";
|
|
|
|
export const dynamic = "force-dynamic";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({ messages: await getBackend().savedMessages() });
|
|
}
|