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