17 lines
317 B
Python
17 lines
317 B
Python
"""HarborWatch CLI entrypoint."""
|
|
|
|
import click
|
|
|
|
from .checks import fleet_status
|
|
|
|
|
|
@click.group()
|
|
def main():
|
|
"""Check rollout status across the service fleet."""
|
|
|
|
|
|
@main.command()
|
|
@click.option("--service", required=True, help="Service name to check")
|
|
def status(service):
|
|
click.echo(fleet_status(service))
|