Files
revng-revng/python/revng/pypeline/cli/pipeline/__init__.py
T
2025-09-10 12:05:15 +02:00

20 lines
445 B
Python

#
# This file is distributed under the MIT License. See LICENSE.md for details.
#
import click
from revng.pypeline.cli.utils import LazyGroup
@click.group(
cls=LazyGroup,
lazy_subcommands={
"run_pipe": "revng.pypeline.cli.pipeline.run_pipe:run_pipe",
"run_analysis": "revng.pypeline.cli.pipeline.run_analysis:run_analysis",
},
help="Low-level pipeline commands (plumbing)",
)
def pipeline() -> None:
pass