summaryrefslogtreecommitdiffstats
path: root/anta/cli/check/__init__.py
blob: bbc5a7e9dba408e516520cc67079c175683e9673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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)