From 0e7d524bad106f02d4b5a9b7ae2b39b71eaf8a0f Mon Sep 17 00:00:00 2001 From: z3z1ma Date: Mon, 18 Nov 2024 13:22:40 -0700 Subject: [PATCH] chore: add blurb to container docstring --- src/cdf/core/container.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/cdf/core/container.py b/src/cdf/core/container.py index 6ccff45..d87ef85 100644 --- a/src/cdf/core/container.py +++ b/src/cdf/core/container.py @@ -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