mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
14 lines
221 B
Python
14 lines
221 B
Python
"""Data structure models."""
|
|
|
|
# Standard Library
|
|
from typing import Union
|
|
|
|
# Local
|
|
from .bgp_route import BGPRouteTable
|
|
|
|
OutputDataModel = Union["BGPRouteTable"]
|
|
|
|
__all__ = (
|
|
"BGPRouteTable",
|
|
"OutputDataModel",
|
|
)
|