Coverage for src / qdrant_loader / cli / commands / __init__.py: 100%
9 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:48 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-18 04:48 +0000
1"""CLI commands package — lazy imports for fast startup."""
4def __getattr__(name: str):
5 if name == "run_init":
6 from .init import run_init
8 return run_init
9 if name == "run_pipeline_ingestion":
10 from .ingest import run_pipeline_ingestion
12 return run_pipeline_ingestion
13 raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
16__all__ = [
17 "run_init",
18 "run_pipeline_ingestion",
19]