Manuel Bustillo 07476221c3
All checks were successful
Playwright Tests / test (pull_request) Has been skipped
Check usage of free licenses / build-static-assets (pull_request) Successful in 32s
Add copyright notice / copyright_notice (pull_request) Successful in 34s
Add copyright notice
2024-12-28 10:46:08 +00:00

7 lines
143 B
TypeScript

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