add client receiving base

This commit is contained in:
2025-05-04 14:17:20 +02:00
parent fbbaabb04b
commit 194fd2adea
9 changed files with 228 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
import { PythagorasClient } from "./pythagoras_client";
async function main(): Promise<void> {
const conn = new PythagorasClient("/ws");
console.log(await conn.recv());
}
main();