From 0c658d7ab43d2ca2f1c22c21b5a7ad2c603e4a17 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Sun, 13 Jul 2025 17:23:18 -0700 Subject: [PATCH] remove dead code --- src/client.nim | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/client.nim b/src/client.nim index 93cefd8..a4c2ee8 100644 --- a/src/client.nim +++ b/src/client.nim @@ -82,13 +82,6 @@ proc getConversations*(self: Client): Table[string, ConvoWrapper] = # Methods ################################################# -# proc addConversation*(c: var Client, convo: Conversation) = -# if not c.conversations.hasKey(convo.getConvoId()): -# c.conversations[convo.getConvoId()] = convo -# else: -# echo "Conversation with ID ", convo.getConvoId(), " already exists." - - proc createIntroBundle*(self: var Client): IntroBundle = ## Generates an IntroBundle for the client, which includes ## the required information to send a message.