8 lines
143 B
Python
8 lines
143 B
Python
import abc
|
|
|
|
|
|
class DatabaseConnector(abc.ABC):
|
|
@abc.abstractmethod
|
|
def get_object(self, identifier):
|
|
raise NotImplementedError
|