9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
import { fetchAvailableYears } from '@/app/lib/actions/monthActions';
|
|
import { NextResponse } from 'next/server';
|
|
|
|
export async function GET(request: Request) {
|
|
|
|
const availableYears = await fetchAvailableYears();
|
|
|
|
return NextResponse.json({ availableYears });
|
|
} |