refactor: consolidate duplicate QdrantService singleton into singleton.py
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,8 +1,9 @@
|
||||
"""Global singleton instances for Vera-AI."""
|
||||
from typing import Optional
|
||||
from .qdrant_service import QdrantService
|
||||
from .config import config
|
||||
|
||||
_qdrant_service: QdrantService = None
|
||||
_qdrant_service: Optional[QdrantService] = None
|
||||
|
||||
|
||||
def get_qdrant_service() -> QdrantService:
|
||||
|
||||
Reference in New Issue
Block a user