mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
15 lines
219 B
Python
15 lines
219 B
Python
"""Data structure models."""
|
|
|
|
# Standard Library
|
|
from typing import Union
|
|
|
|
# Local
|
|
from .bgp_route import BGPRouteTable
|
|
|
|
OutputDataModel = Union[BGPRouteTable]
|
|
|
|
__all__ = (
|
|
"BGPRouteTable",
|
|
"OutputDataModel",
|
|
)
|