lookingglass/hyperglass/models/data/__init__.py
2021-09-13 02:35:52 -07:00

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",
)