TODO: Add module docstring.
Functions
logs_group
logs_group(*args: object, **kwargs: object) -> None
Logs command stub when click is not available.
Source code in provide/foundation/cli/commands/logs/__init__.py
| def logs_group(*args: object, **kwargs: object) -> None:
"""Logs command stub when click is not available."""
raise ImportError(
"CLI commands require optional dependencies. Install with: pip install 'provide-foundation[cli]'",
)
|