18 lines
285 B
Python
18 lines
285 B
Python
from .models.DB_model import DBInterface;
|
|
|
|
class ChromaDB(DBInterface):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def connect(self):
|
|
|
|
|
|
def disconnect(self):
|
|
raise NotImplementedError
|
|
|
|
def execute(self, command, parameters):
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
|