First migrations
This commit is contained in:
@@ -62,9 +62,6 @@ from .on_reaction_clear_abc import OnReactionClearABC
|
||||
from .on_reaction_clear_emoji_abc import OnReactionClearEmojiABC
|
||||
from .on_reaction_remove_abc import OnReactionRemoveABC
|
||||
from .on_ready_abc import OnReadyABC
|
||||
from .on_relationship_add_abc import OnRelationshipAddABC
|
||||
from .on_relationship_remove_abc import OnRelationshipRemoveABC
|
||||
from .on_relationship_update_abc import OnRelationshipUpdateABC
|
||||
from .on_resume_abc import OnResumeABC
|
||||
from .on_typing_abc import OnTypingABC
|
||||
from .on_user_update_abc import OnUserUpdateABC
|
||||
|
@@ -1,11 +0,0 @@
|
||||
from abc import ABC, abstractmethod
|
||||
import discord
|
||||
|
||||
class OnRelationshipAddABC(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
||||
|
||||
@abstractmethod
|
||||
async def on_relationship_add(self, relationship: discord.Relationship): pass
|
||||
|
@@ -1,11 +0,0 @@
|
||||
from abc import ABC, abstractmethod
|
||||
import discord
|
||||
|
||||
|
||||
class OnRelationshipRemoveABC(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
||||
|
||||
@abstractmethod
|
||||
async def on_relationship_remove(self, relationship: discord.Relationship): pass
|
@@ -1,12 +0,0 @@
|
||||
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
|
Reference in New Issue
Block a user