Organize project by 5 core modules based on requirement docs. Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
import { NextResponse } from "next/server"
|
|
import { getGroupSummary } from "@/services/rfm-engine"
|
|
|
|
export async function GET() {
|
|
const data = getGroupSummary()
|
|
return NextResponse.json({ success: true, data })
|
|
}
|