File size: 272 Bytes
1187856
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { NextRequest, NextResponse } from "next/server";
import { getLeaderboard } from "@/lib/data/leaderboard";

export function GET(req: NextRequest) {
  const snapshot = req.nextUrl.searchParams.get("snapshot");
  return NextResponse.json(getLeaderboard(snapshot));
}