Added on_relationship_update event abc

This commit is contained in:
Sven Heidemann 2021-11-20 16:24:12 +01:00
parent baa86b75e7
commit d99cec79b9

View File

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