mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 17:30:23 +08:00
11 lines
277 B
Python
11 lines
277 B
Python
|
|
"""
|
||
|
|
CandidateResolver facade import.
|
||
|
|
|
||
|
|
Phase2 keeps the implementation in `services/orchestration/` for compatibility,
|
||
|
|
and gradually migrates it into this package.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from src.services.orchestration.candidate_resolver import CandidateResolver
|
||
|
|
|
||
|
|
__all__ = ["CandidateResolver"]
|