1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-04-17 21:38:27 +00:00
thatmattlove-hyperglass/hyperglass/models/data/__init__.py
Wilhelm Schonfeldt c394d93326 Fix: Export BGPRoute class in data models __init__.py
- Add BGPRoute import and export in hyperglass.models.data.__init__.py
- This allows BGP parsers to properly import BGPRoute for validation
- Resolves ImportError when starting hyperglass application
2025-09-26 16:59:10 +02:00

15 lines
245 B
Python

"""Data structure models."""
# Standard Library
from typing import Union
# Local
from .bgp_route import BGPRoute, BGPRouteTable
OutputDataModel = Union[BGPRouteTable]
__all__ = (
"BGPRoute",
"BGPRouteTable",
"OutputDataModel",
)