Files
AnyMusicBot/bot/modules/soundcloud/__init__.py
2024-11-02 00:10:44 +02:00

11 lines
245 B
Python

from bot.utils.config import config
from .downloader import SoundCloudBytestream
from .soundcloud import SoundCloud
soundcloud = SoundCloud(
client_id=config.tokens.soundcloud.client_id,
)
__all__ = ["soundcloud", "SoundCloudBytestream"]