Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Hammad712
/
SSO
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
SSO
/
app
/
api
/
v1
/
api.py
Hammad712
Added SSO Backend Functionality
8393a26
3 months ago
raw
Copy download link
history
blame
contribute
delete
174 Bytes
from
fastapi
import
APIRouter
from
app.api.v1.endpoints
import
auth
api_router = APIRouter()
api_router.include_router(auth.router, prefix=
"/auth"
, tags=[
"Authentication"
])