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