From 9d7e6f3c9cc8c476bb90cf284182a096d838d314 Mon Sep 17 00:00:00 2001 From: Percs <83934299+Percslol@users.noreply.github.com> Date: Sun, 7 Jul 2024 17:56:17 -0500 Subject: [PATCH] update readme --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 04a3d97..a86f00c 100644 --- a/README.md +++ b/README.md @@ -47,12 +47,6 @@ const conn = new BareMuxConnection("/bare-mux/worker.js"); // If your transport is an ES module and exports the class as the default export await conn.setTransport("/bare-mux/transport-module.js", ["arg1", "ws://localhost:4000"]); -// Set Transport Manually -await conn.setManualTransport(` - const exports = await import("/bare-mux/transport.js"); - return new exports.BareClient("https://tomp.app"); -`); - /// As a proxy developer import { BareClient } from "@mercuryworkshop/bare-mux"; const client = new BareClient();