7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
/* Copyright (C) 2024-2025 LibreWeddingPlanner contributors*/
|
|
|
|
import { NextResponse } from "next/server";
|
|
|
|
export function GET() {
|
|
return NextResponse.json({});
|
|
} |