blob: 8a4bf2fd9ea1b2baa8161b944f42f24ce8432a22 [file]
import abc
class FirstClassObjectInterface(abc.ABC):
@property
@abc.abstractmethod
def unique(self):
raise NotImplementedError
@abc.abstractmethod
def store(self, ram):
raise NotImplementedError