Added on_guild_channel_create event abc

This commit is contained in:
Cora Cordes 2021-11-20 19:04:17 +01:00
parent 276910c86d
commit e351b98fe4

View File

@ -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