router.post("/api-keys")
| 1 | from fastapi import APIRouter, HTTPException, Depends, status |
| 2 | from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm |
| 3 | from pydantic import BaseModel |
| 4 | from typing import Optional |
nothing calls this directly
no outgoing calls
no test coverage detected