mirror of
https://github.com/weyne85/discord_music_bot.git
synced 2025-10-29 16:58:27 +00:00
15 lines
256 B
Python
15 lines
256 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class AbstractView(ABC):
|
|
@abstractmethod
|
|
async def update(self) -> None:
|
|
pass
|
|
|
|
def set_message(self, message) -> None:
|
|
pass
|
|
|
|
@abstractmethod
|
|
def stopView(self) -> None:
|
|
pass
|