8 lines
165 B
Python
8 lines
165 B
Python
import logging
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
async def setup(bot):
|
|
from .component import KoanComponent
|
|
await bot.add_component(KoanComponent(bot))
|