update to use newer client (this is still very broken)

This commit is contained in:
2026-04-09 10:59:44 -05:00
parent 3cff324d9d
commit dd88667d73
5 changed files with 45 additions and 23 deletions
+8
View File
@@ -0,0 +1,8 @@
import { TetherClient } from "tether-ts";
const client = new TetherClient();
client.connect("ws://localhost:8080/tether");
client.subscribe("messages", (message) => {
console.log("Received message", message);
});