mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +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
|