7 lines
165 B
TypeScript
Raw Normal View History

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