From 9529c7b1357e2d6709fbb8a4551f34e4fac2bb62 Mon Sep 17 00:00:00 2001 From: Caolan McMahon Date: Mon, 22 Jul 2024 17:01:08 +0100 Subject: [PATCH] Remove unused import from mutiny-app --- mutiny-app/src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mutiny-app/src/main.ts b/mutiny-app/src/main.ts index bb3ee49..f13fb51 100644 --- a/mutiny-app/src/main.ts +++ b/mutiny-app/src/main.ts @@ -1,4 +1,4 @@ -import { connect, defaultSocketPath, MutinyClient, PeerEvent, Message, AnnounceEvent } from "../../lib/client.ts"; +import { connect, defaultSocketPath, MutinyClient, Message } from "../../lib/client.ts"; import { parseArgs } from "@std/cli/parse-args"; import { serveDir } from "@std/http";