mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
20 lines
445 B
Python
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
|