7 lines
187 B
Python
7 lines
187 B
Python
"""CDEK auth adapter skeleton."""
|
|
|
|
|
|
class CDEKAuthClient:
|
|
async def get_access_token(self) -> str:
|
|
raise NotImplementedError("CDEK auth implementation is added in task 003.")
|