From 4fc0aad0dff4370db661dbaafd8aea6735cb4ee4 Mon Sep 17 00:00:00 2001 From: liamcottle Date: Tue, 4 Mar 2025 16:49:43 +1300 Subject: [PATCH] export tcp connection class from lib --- src/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.js b/src/index.js index c951924..2e02005 100644 --- a/src/index.js +++ b/src/index.js @@ -1,6 +1,7 @@ import Connection from "./connection/connection.js"; import BleConnection from "./connection/ble_connection.js"; import SerialConnection from "./connection/serial_connection.js"; +import TCPConnection from "./connection/tcp_connection.js"; import Constants from "./constants.js"; import Packet from "./packet.js"; @@ -8,6 +9,7 @@ export { Connection, BleConnection, SerialConnection, + TCPConnection, Constants, Packet, };