Added on_private_channel_delete event abc
This commit is contained in:
parent
e81449031e
commit
276910c86d
@ -1,7 +1,12 @@
|
||||
from abc import ABC, abstractmethod
|
||||
import discord
|
||||
|
||||
|
||||
class OnPrivateChannelDeleteABC(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
||||
|
||||
@abstractmethod
|
||||
async def on_private_channel_delete(self, channel: discord.abc.PrivateChannel): pass
|
||||
|
||||
|
Reference in New Issue
Block a user