8 lines
181 B
TypeScript
8 lines
181 B
TypeScript
import { NextResponse } from "next/server";
|
|
import { clearSession } from "@/lib/auth";
|
|
|
|
export async function POST() {
|
|
clearSession();
|
|
return NextResponse.json({ ok: true });
|
|
}
|