mirror of
https://github.com/stoatchat/python-client-sdk.git
synced 2026-07-22 10:35:25 -04:00
9 lines
144 B
Python
Executable File
9 lines
144 B
Python
Executable File
from __future__ import annotations
|
|
|
|
from typing import TYPE_CHECKING, TypedDict
|
|
|
|
__all__ = ("Embed",)
|
|
|
|
class Embed(TypedDict):
|
|
pass # TODO
|