diff --git a/listener.ts b/listener.ts index 418dd04..50a9a2d 100644 --- a/listener.ts +++ b/listener.ts @@ -9,7 +9,7 @@ export async function listen () { const repl_file = Bun.file(repl_file_path) await Bun.write(repl_file, JSON.stringify(repl_info)) - console.log(`Ludus REPL listening on ${unix_socket}`) + console.log(`Ludus REPL listening on unix://${unix_socket}`) Bun.listen({ //hostname: "localhost", diff --git a/unix.ts b/unix.ts deleted file mode 100644 index c0d73e5..0000000 --- a/unix.ts +++ /dev/null @@ -1,7 +0,0 @@ -Bun.listen({ - unix: "/tmp/test.sock", - socket: { - open: (_) => console.log("Somebody opened my socket."), - data: (_, d) => { console.log("I got data!", d) } - } -})