mirror of
https://github.com/RYGhub/royalnet.git
synced 2025-04-02 13:20:31 +00:00
* Start moving some stuff around * Maybe this was a bad idea afterall * This might actually work * Fix leftover bugs * Port a few commands to the new format * MUCH STUFF VERY DOGE
10 lines
379 B
Python
10 lines
379 B
Python
"""Video and audio downloading related classes, mainly used for Discord voice bots."""
|
|
|
|
from . import playmodes
|
|
from .ytdlinfo import YtdlInfo
|
|
from .ytdlfile import YtdlFile
|
|
from .fileaudiosource import FileAudioSource
|
|
from .ytdldiscord import YtdlDiscord
|
|
from .ytdlmp3 import YtdlMp3
|
|
|
|
__all__ = ["playmodes", "YtdlInfo", "YtdlFile", "FileAudioSource", "YtdlDiscord", "YtdlMp3"]
|