2024-02-21 10:53:28 -05:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
from pylav.extension.red.utils.required_methods import pylav_auto_setup
|
|
|
|
from pylav.type_hints.bot import DISCORD_BOT_TYPE
|
|
|
|
from redbot.core.utils import get_end_user_data_statement
|
|
|
|
|
2024-02-19 18:35:44 -05:00
|
|
|
from .tts import TTS
|
|
|
|
|
2024-02-21 10:53:28 -05:00
|
|
|
__red_end_user_data_statement__ = get_end_user_data_statement(__file__)
|
2024-02-19 18:35:44 -05:00
|
|
|
|
2024-02-21 10:53:28 -05:00
|
|
|
async def setup(bot: DISCORD_BOT_TYPE):
|
|
|
|
await pylav_auto_setup(bot, TTS)
|