7 lines
143 B
TypeScript
Raw Permalink Normal View History

2024-12-28 10:46:08 +00:00
/* Copyright (C) 2024 Manuel Bustillo*/
import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json({});
}