mirror of
https://github.com/weyne85/discord_music_bot.git
synced 2025-10-29 16:58:27 +00:00
13 lines
238 B
Python
13 lines
238 B
Python
from abc import ABC, abstractmethod
|
|
from discord.ui import Item, View
|
|
|
|
|
|
class AbstractItem(ABC, Item):
|
|
@abstractmethod
|
|
def set_view(self, view: View):
|
|
pass
|
|
|
|
@abstractmethod
|
|
def get_view(self) -> View:
|
|
pass
|