Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Omkar008
/
demo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
demo
/
routers
/
auth.py
Omkar008
Upload 22 files
b2e9bf4
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
151 Bytes
from
fastapi
import
APIRouter
router = APIRouter(prefix=
"/auth"
)
@router.get(
"/authenticate"
)
async
def
auth
():
return
{
"Message"
:
"Entered Auth"
}