2025-03-17 07:33:51 +01:00
|
|
|
# Copyright (c) 2023-2025 Arista Networks, Inc.
|
2025-02-05 11:32:35 +01:00
|
|
|
# Use of this source code is governed by the Apache License 2.0
|
|
|
|
# that can be found in the LICENSE file.
|
2025-02-05 11:39:09 +01:00
|
|
|
"""ANTA Top-level Console.
|
|
|
|
|
|
|
|
https://rich.readthedocs.io/en/stable/console.html#console-api.
|
2025-02-05 11:32:35 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
from rich.console import Console
|
|
|
|
from rich.theme import Theme
|
|
|
|
|
|
|
|
from anta import RICH_COLOR_THEME
|
|
|
|
|
|
|
|
console = Console(theme=Theme(RICH_COLOR_THEME))
|