mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 09:16:22 +02:00
6 lines
109 B
TypeScript
6 lines
109 B
TypeScript
|
|
import { NextResponse } from "next/server";
|
||
|
|
|
||
|
|
export async function POST() {
|
||
|
|
return NextResponse.json([]);
|
||
|
|
}
|