Files
pluscampaign-plugin/plugin/twitch/__init__.py
T
2026-07-23 01:02:12 +10:00

12 lines
230 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 AwesomeComponent
await bot.add_component(AwesomeComponent(bot))