11 lines
229 B
Python
11 lines
229 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 ProfileComponent
|
|
await bot.add_component(ProfileComponent(bot))
|