6 lines
90 B
Python
6 lines
90 B
Python
from pydantic import BaseModel
|
|
import aiohttp
|
|
|
|
async def get_access_token(
|
|
code: str
|
|
) |