Added on_invite_create event abc

This commit is contained in:
Sven Heidemann 2021-11-20 16:41:29 +01:00
parent 04179ce906
commit 426772910f

View File

@ -1,7 +1,12 @@
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
import discord
class OnInviteCreateABC(ABC): class OnInviteCreateABC(ABC):
@abstractmethod @abstractmethod
def __init__(self): pass def __init__(self): pass
@abstractmethod
async def on_invite_create(self, invite: discord.Invite): pass