11 lines
231 B
Python
11 lines
231 B
Python
from typing import TYPE_CHECKING
|
|
from .. import logger
|
|
|
|
if TYPE_CHECKING:
|
|
from meta.bot import Bot
|
|
|
|
|
|
async def setup(bot: 'Bot'):
|
|
from .component import ProfilesComponent
|
|
await bot.add_component(ProfilesComponent(bot))
|