Added on_webhooks_update event abc

This commit is contained in:
Sven Heidemann 2021-11-20 18:57:55 +01:00
parent b903ec5434
commit 67696bc63c

View File

@ -1,7 +1,12 @@
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
import discord
class OnWebhooksUpdateABC(ABC): class OnWebhooksUpdateABC(ABC):
@abstractmethod @abstractmethod
def __init__(self): pass def __init__(self): pass
@abstractmethod
async def on_webhooks_update(self, channel: discord.abc.GuildChannel): pass