8 lines
192 B
TypeScript
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 });
|
||
|
|
}
|