summaryrefslogtreecommitdiffstats
path: root/anta/cli/check/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'anta/cli/check/__init__.py')
-rw-r--r--anta/cli/check/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/anta/cli/check/__init__.py b/anta/cli/check/__init__.py
new file mode 100644
index 0000000..aec80aa
--- /dev/null
+++ b/anta/cli/check/__init__.py
@@ -0,0 +1,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)