16 lines
265 B
Python
16 lines
265 B
Python
"""
|
|
ECU Tests framework package.
|
|
|
|
Provides:
|
|
- config: YAML configuration loader and types
|
|
- lin: LIN interface abstraction and adapters (mock and BabyLIN)
|
|
|
|
Package version is exposed as __version__.
|
|
"""
|
|
__all__ = [
|
|
"config",
|
|
"lin",
|
|
]
|
|
|
|
__version__ = "0.1.0"
|