summaryrefslogtreecommitdiffstats
path: root/anta/cli/debug/__init__.py
blob: 18d577fe85b2dda6c8af598109f6847b181e8587 (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 execute EOS commands on remote devices."""

import click

from anta.cli.debug import commands


@click.group
def debug() -> None:
    """Commands to execute EOS commands on remote devices."""


debug.add_command(commands.run_cmd)
debug.add_command(commands.run_template)