anta/anta/cli/check/__init__.py
Daniel Baumann 2265bd9c67
Merging upstream version 0.14.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 11:39:09 +01:00

16 lines
384 B
Python

# Copyright (c) 2023-2024 Arista Networks, Inc.
# Use of this source code is governed by the Apache License 2.0
# that can be found in the LICENSE file.
"""Click commands to validate configuration files."""
import click
from anta.cli.check import commands
@click.group
def check() -> None:
"""Commands to validate configuration files."""
check.add_command(commands.catalog)