diff --git a/src/yang/__init__.py b/src/yang/__init__.py new file mode 100644 index 0000000..12d3adf --- /dev/null +++ b/src/yang/__init__.py @@ -0,0 +1,36 @@ +""" +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", +]