Initial Commit
This commit is contained in:
18
backend/Database/chromaDB/chroma_DB.py
Normal file
18
backend/Database/chromaDB/chroma_DB.py
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user