diff --git a/src/modules_core/abc/events/on_guild_channel_create_abc.py b/src/modules_core/abc/events/on_guild_channel_create_abc.py index c04bef7..3d36777 100644 --- a/src/modules_core/abc/events/on_guild_channel_create_abc.py +++ b/src/modules_core/abc/events/on_guild_channel_create_abc.py @@ -1,7 +1,12 @@ from abc import ABC, abstractmethod +import discord class OnGuildChannelCreateABC(ABC): @abstractmethod def __init__(self): pass + + @abstractmethod + async def on_guild_channel_create(self, channel: discord.abc.GuildChannel): pass + \ No newline at end of file