Files
profiles-plugin/profiles/twitch/__init__.py
T
2025-09-02 07:55:41 +10:00

11 lines
231 B
Python

from typing import TYPE_CHECKING
from .. import logger
if TYPE_CHECKING:
from meta.bot import Bot
async def setup(bot: 'Bot'):
from .component import ProfilesComponent
await bot.add_component(ProfilesComponent(bot))