Added on_private_channel_pins_update event abc
This commit is contained in:
parent
ffad565520
commit
2ab2ef3776
@ -1,7 +1,12 @@
|
||||
from abc import ABC, abstractmethod
|
||||
import discord
|
||||
|
||||
|
||||
class OnPrivateChannelPinsUpdateABC(ABC):
|
||||
|
||||
@abstractmethod
|
||||
def __init__(self): pass
|
||||
|
||||
@abstractmethod
|
||||
async def on_private_channel_pins_update(self, channel: discord.abc.PrivateChannel, list_pin: Optional[datetime]): pass
|
||||
|
Reference in New Issue
Block a user