9 lines
144 B
Python
9 lines
144 B
Python
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
from .cog import CounterCog
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(CounterCog(bot))
|