Initial merger with Twitch interface.
This commit is contained in:
13
src/modules/counters/__init__.py
Normal file
13
src/modules/counters/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import logging
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
from .cog import CounterCog
|
||||
|
||||
def prepare(bot):
|
||||
bot.add_cog(CounterCog(bot))
|
||||
|
||||
async def setup(bot):
|
||||
from .lion_cog import CounterCog
|
||||
|
||||
await bot.add_cog(CounterCog(bot))
|
||||
Reference in New Issue
Block a user