7 lines
143 B
TypeScript
7 lines
143 B
TypeScript
/* Copyright (C) 2024 Manuel Bustillo*/
|
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
export function GET() {
|
|
return NextResponse.json({});
|
|
} |