All checks were successful
Continuous Integration / Validate and test changes (push) Successful in 3s
12 lines
301 B
Python
12 lines
301 B
Python
"""Authentication router placeholder."""
|
|
|
|
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/auth", tags=["auth"])
|
|
|
|
|
|
@router.get("/noop", include_in_schema=False)
|
|
def auth_not_implemented() -> dict:
|
|
"""Placeholder endpoint to keep router wired."""
|
|
return {"status": "not_implemented"}
|