From e351b98fe46df3e064ba73fd5eef9063eed5efd0 Mon Sep 17 00:00:00 2001 From: Cora Cordes Date: Sat, 20 Nov 2021 19:04:17 +0100 Subject: [PATCH] Added on_guild_channel_create event abc --- src/modules_core/abc/events/on_guild_channel_create_abc.py | 5 +++++ 1 file changed, 5 insertions(+) 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