10 lines
151 B
Python
10 lines
151 B
Python
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
from .cog import TwitchAuthCog
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(TwitchAuthCog(bot))
|
|
|