1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

15 lines
219 B
Python
Raw Normal View History

2021-09-13 02:35:52 -07:00
"""Data structure models."""
# Standard Library
from typing import Union
# Local
from .bgp_route import BGPRouteTable
2021-09-21 07:54:16 -07:00
OutputDataModel = Union[BGPRouteTable]
2021-09-13 02:35:52 -07:00
__all__ = (
"BGPRouteTable",
"OutputDataModel",
)