File size: 216 Bytes
03e2430
 
2fcae3f
03e2430
 
 
 
 
1
2
3
4
5
6
7
8
9
import { NextResponse } from "next/server"

import { getDeveloperList } from "@/lib/data-backend"

export async function GET() {
  const developers = await getDeveloperList()
  return NextResponse.json(developers)
}