Now that assemblers are represented via the `Stage` class, the Assembler class is not needed anymore. Adjust the monitor method to take an `pipeline.Stage` for the `assembler` method as well.
18 lines
491 B
Python
18 lines
491 B
Python
"""OSBuild Module
|
|
|
|
The `osbuild` module provides access to the internal features of OSBuild. It
|
|
provides parsers for the input and output formats of osbuild, access to shared
|
|
infrastructure of osbuild stages, as well as a pipeline executor.
|
|
|
|
The utility module `osbuild.util` provides access to common functionality
|
|
independent of osbuild but used across the osbuild codebase.
|
|
"""
|
|
|
|
from .pipeline import Manifest, Pipeline, Stage
|
|
|
|
|
|
__all__ = [
|
|
"Manifest",
|
|
"Pipeline",
|
|
"Stage",
|
|
]
|