Added on_webhooks_update event abc
This commit is contained in:
parent
b903ec5434
commit
67696bc63c
@ -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
|
||||||
|
Reference in New Issue
Block a user