9 lines
123 B
Python
9 lines
123 B
Python
import abc
|
|
|
|
|
|
class DatabaseConnector(abc.ABC):
|
|
|
|
@abc.abstractmethod
|
|
def get_object(self, identifier):
|
|
pass
|