10 lines
172 B
Python
10 lines
172 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from chromadb.config import Settings
|
|
|
|
|
|
class Server(ABC):
|
|
@abstractmethod
|
|
def __init__(self, settings: Settings):
|
|
pass
|