mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 23:20:56 +01:00
6 lines
166 B
Python
6 lines
166 B
Python
from httpx_oauth.clients.openid import OpenID
|
|
|
|
|
|
class CustomOpenID(OpenID):
|
|
async def get_user_info(self, token: str) -> dict:
|
|
raise NotImplementedError() |