chore: remove next-auth, use simple auth

This commit is contained in:
2026-07-30 12:36:37 +03:00
parent 53e423100f
commit 5045e07970
6 changed files with 21 additions and 105 deletions
+9 -2
View File
@@ -1,2 +1,9 @@
import { handlers } from '@/lib/auth'
export const { GET, POST } = handlers
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 })
}