Added on_private_channel_update event abc

This commit is contained in:
Cora Cordes 2021-11-20 19:06:04 +01:00
parent 4e00da99b5
commit ffad565520

View File

@ -1,7 +1,12 @@
from abc import ABC, abstractmethod
import discord
class OnPrivateChannelUpdateABC(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
async def on_private_channel_update(self, before: discord.GroupChannel, after: discord.GroupChannel): pass