mirror of
https://github.com/MelisaDev/melisa.git
synced 2024-11-11 19:07:28 +03:00
a
This commit is contained in:
parent
85d768c37b
commit
c5327d011b
3 changed files with 4 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
# Full MIT License can be found in `LICENSE.txt` at the project root.
|
||||
|
||||
from .client import *
|
||||
from .models import Intents, Snowflake
|
||||
from .models import *
|
||||
from .exceptions import *
|
||||
|
||||
__package__ = "melisa"
|
||||
|
|
|
@ -4,3 +4,4 @@
|
|||
from .app import *
|
||||
from .guild import *
|
||||
from .user import *
|
||||
from .message import *
|
||||
|
|
|
@ -7,6 +7,7 @@ from dataclasses import dataclass
|
|||
from enum import IntEnum
|
||||
from typing import List, Any, Optional
|
||||
|
||||
from ... import Thread
|
||||
from ...utils import Snowflake, Timestamp
|
||||
from ...utils import APIModelBase
|
||||
from ...utils.types import APINullable
|
||||
|
@ -190,7 +191,7 @@ class Message(APIModelBase):
|
|||
message_reference: APINullable[List] = None
|
||||
flags: APINullable[int] = None
|
||||
interaction: APINullable[List] = None
|
||||
thread: APINullable[List[Any]] = None
|
||||
thread: APINullable[List[Thread]] = None
|
||||
components: APINullable[List] = None
|
||||
sticker_items: APINullable[List] = None
|
||||
stickers: APINullable[List] = None
|
||||
|
|
Loading…
Reference in a new issue