Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rahul7star
/
ai-toolkit
like
8
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
0a4d65d
ai-toolkit
/
ui
/
src
/
app
/
api
/
auth
/
route.ts
rahul7star
boilerplate
fcc02a2
verified
26 days ago
raw
Copy download link
history
blame
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
});
}