mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
5947f04bd3
Signed-off-by: phernandez <paul@basicmachines.co> Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
680 B
Python
17 lines
680 B
Python
"""Dependency injection functions for basic-memory services.
|
|
|
|
DEPRECATED: This module is a backwards-compatibility shim.
|
|
Import from basic_memory.deps package submodules instead:
|
|
- basic_memory.deps.config for configuration
|
|
- basic_memory.deps.db for database/session
|
|
- basic_memory.deps.projects for project resolution
|
|
- basic_memory.deps.repositories for data access
|
|
- basic_memory.deps.services for business logic
|
|
- basic_memory.deps.importers for import functionality
|
|
|
|
This file will be removed once all callers are migrated.
|
|
"""
|
|
|
|
# Re-export everything from the deps package for backwards compatibility
|
|
from basic_memory.deps import * # noqa: F401, F403 # pragma: no cover
|