Coverage for openhcs/components/__init__.py: 100.0%
2 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-04 02:09 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-04 02:09 +0000
1"""
2Component configuration framework for OpenHCS.
4This module provides the foundational component configuration system
5that is used by constants.py to dynamically create enums.
6"""
8from .framework import ComponentConfiguration, ComponentConfigurationFactory
10__all__ = [
11 'ComponentConfiguration',
12 'ComponentConfigurationFactory',
13]