mirror of
https://github.com/phin05/discord-rich-presence-plex
synced 2024-11-22 01:23:02 +00:00
12 lines
205 B
Python
12 lines
205 B
Python
from typing import TypedDict
|
|
|
|
class Response(TypedDict):
|
|
success: bool
|
|
status: int
|
|
|
|
class UploadResponseData(TypedDict):
|
|
error: str
|
|
link: str
|
|
|
|
class UploadResponse(Response):
|
|
data: UploadResponseData
|