8 lines
131 B
Python
8 lines
131 B
Python
"""Custom oauth2 class."""
|
|
|
|
from fastapi.security import OAuth2
|
|
|
|
|
|
class Oauth2TokenInCookies(OAuth2):
|
|
"""TODO: Create this."""
|