Files
fabric-orchestrator/src/yang/__init__.py
Damien Arnodo 9edf963704 feat: add yang package init
Exports all YANG path classes for easy imports.

Part of #3
2025-12-26 13:42:47 +00:00

37 lines
555 B
Python

"""
YANG module for Fabric Orchestrator.
This module provides YANG path constants and utilities for
managing Arista EVPN-VXLAN fabrics via gNMI.
"""
from .paths import (
Interfaces,
Loopbacks,
VLANs,
BGP,
AfiSafi,
VXLAN,
MLAG,
EVPN,
PortChannel,
System,
SubscriptionPath,
FabricSubscriptions,
)
__all__ = [
"Interfaces",
"Loopbacks",
"VLANs",
"BGP",
"AfiSafi",
"VXLAN",
"MLAG",
"EVPN",
"PortChannel",
"System",
"SubscriptionPath",
"FabricSubscriptions",
]