ai-toolkit / ui /src /app /api /auth /route.ts
multimodalart's picture
multimodalart HF Staff
Upload 121 files
f555806 verified
Raw
History Blame Contribute Delete
186 Bytes
import { NextResponse } from 'next/server';
export async function GET() {
// if this gets hit, auth has already been verified
return NextResponse.json({ isAuthenticated: true });
}