* OpenAPI now shows field for auth token. Thx to SunnyCapt
python
from async_fastapi_jwt_auth.auth_jwt import AuthJWT, AuthJWTBearer
from fastapi import Depends
auth_dep = AuthJWTBearer()
app.get("/protected")
async def protected(Authorize: AuthJWT = Depends(auth_dep)):
await Authorize.jwt_required()
return {"success": True}