diff --git a/src/meshcore/__init__.py b/src/meshcore/__init__.py index c58f593..6c7feb3 100644 --- a/src/meshcore/__init__.py +++ b/src/meshcore/__init__.py @@ -5,6 +5,7 @@ from .ble_cx import BLEConnection from .connection_manager import ConnectionManager from .events import EventType from .meshcore import MeshCore +from .packets import BinaryReqType from .serial_cx import SerialConnection from .tcp_cx import TCPConnection @@ -13,6 +14,7 @@ logging.basicConfig(level=logging.INFO) logger = logging.getLogger(__name__) __all__ = [ + "BinaryReqType", "BLEConnection", "ConnectionManager", "EventType",