Skip to content

Commit

Permalink
chore: add blurb to container docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
z3z1ma committed Nov 18, 2024
1 parent 8815f9f commit 0e7d524
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/cdf/core/container.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
"""Container module for dependency injection."""
"""Container module for dependency injection.
Containers act as the primary mechanism for DI and manual configuration resolution. They allow code
simplification in most cases by decoupling services which interact with external APIs or databases
from the functions which leverage them such as data pipelines, reverse ETL, ad hoc analytics, etc.
"""

from __future__ import annotations

Expand Down

0 comments on commit 0e7d524

Please sign in to comment.