10 lines
271 B
TypeScript
10 lines
271 B
TypeScript
import { NextResponse } from 'next/server'
|
||
|
||
// NextAuth kaldırıldı
|
||
export async function GET() {
|
||
return NextResponse.json({ error: 'Not found' }, { status: 404 })
|
||
}
|
||
export async function POST() {
|
||
return NextResponse.json({ error: 'Not found' }, { status: 404 })
|
||
}
|