diff --git a/customcmd/__init__.py b/customcmd/__init__.py new file mode 100644 index 0000000..8c2efc5 --- /dev/null +++ b/customcmd/__init__.py @@ -0,0 +1,6 @@ +import logging + +logger = logging.getLogger(__name__) + +from .twitch import setup as twitch_setup +from .parser import * diff --git a/twitch/__init__.py b/twitch/__init__.py index e69de29..36d7b7b 100644 --- a/twitch/__init__.py +++ b/twitch/__init__.py @@ -0,0 +1,7 @@ +from .. import logger + + +async def setup(bot): + from .component import CustomCmdComponent + + await bot.add_component(CustomCmdComponent(bot))