28 changed files with 135 additions and 84 deletions
@ -1,6 +1,18 @@ |
|||
from disco.types.base import UNSET |
|||
from disco.types.channel import Channel |
|||
from disco.types.guild import Guild, GuildMember, Role |
|||
from disco.types.user import User |
|||
from disco.types.message import Message |
|||
from disco.types.voice import VoiceState |
|||
from disco.types.base import UNSET # noqa: F401 |
|||
from disco.types.channel import Channel # noqa: F401 |
|||
from disco.types.guild import Guild, GuildMember, Role # noqa: F401 |
|||
from disco.types.user import User # noqa: F401 |
|||
from disco.types.message import Message # noqa: F401 |
|||
from disco.types.voice import VoiceState # noqa: F401 |
|||
|
|||
# TODO: deprecate this entire file |
|||
__all__ = { |
|||
'UNSET', |
|||
'Channel', |
|||
'Guild', |
|||
'GuildMember', |
|||
'Role', |
|||
'User', |
|||
'Message', |
|||
'VoiceState', |
|||
} |
|||
|
@ -1,3 +1,5 @@ |
|||
from disco.voice.client import * |
|||
from disco.voice.player import * |
|||
from disco.voice.playable import * |
|||
from disco.voice.client import * # noqa: F401,F403 |
|||
from disco.voice.player import * # noqa: F401,F403 |
|||
from disco.voice.playable import * # noqa: F401,F403 |
|||
|
|||
# TODO: deprecate this file |
|||
|
Loading…
Reference in new issue