Added on_guild_role_create event abc

This commit is contained in:
Sven Heidemann 2021-11-20 19:02:27 +01:00
parent b0c75fa651
commit 4d69250342

View File

@ -1,7 +1,11 @@
from abc import ABC, abstractmethod
import discord
class OnGuildRoleCreateABC(ABC):
@abstractmethod
def __init__(self): pass
@abstractmethod
async def on_guild_role_create(self, role: discord.Role): pass