Files
2026-01-20 17:20:13 +01:00

8 lines
192 B
TypeScript

import { NextResponse } from 'next/server';
import { clearSession } from '@/lib/auth';
export async function POST() {
await clearSession();
return NextResponse.json({ success: true });
}