summaryrefslogtreecommitdiffstats
path: root/anta/cli/exec/__init__.py
blob: 6be39343b87fa5808e1654c83b6ca2d47d94a9b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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 execute various scripts on EOS devices
"""
import click

from anta.cli.exec import commands


@click.group
def exec() -> None:  # pylint: disable=redefined-builtin
    """Commands to execute various scripts on EOS devices"""


exec.add_command(commands.clear_counters)
exec.add_command(commands.snapshot)
exec.add_command(commands.collect_tech_support)