Initial commit

This commit is contained in:
CarmiCoven
2026-07-23 01:02:12 +10:00
commit b8ffacd916
11 changed files with 132 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
from typing import TYPE_CHECKING
from .. import logger
if TYPE_CHECKING:
from meta.bot import Bot
async def setup(bot: "Bot"):
from .component import AwesomeComponent
await bot.add_component(AwesomeComponent(bot))