Coverage for openhcs/core/__init__.py: 100.0%
3 statements
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-14 05:57 +0000
« prev ^ index » next coverage.py v7.10.3, created at 2025-08-14 05:57 +0000
1"""Core module for openhcs."""
3# These imports are re-exported through __all__
4from openhcs.core.context.processing_context import ProcessingContext
5from openhcs.core.steps.abstract import AbstractStep as Step
7__all__ = [
8 'ProcessingContext',
9 'Step',
10]