remove unused imports

This commit is contained in:
Jazz Turner-Baggs 2025-11-20 16:02:57 -08:00
parent 4b89f5850a
commit 57715899dd
11 changed files with 5 additions and 18 deletions

View File

@ -16,7 +16,6 @@ import # Foreign
types types
import #local import #local
conversation_store,
conversations, conversations,
conversations/convo_impl, conversations/convo_impl,
crypto, crypto,

View File

@ -1,9 +1,5 @@
import std/[options, times]
import ./conversations/[convo_type, message] import ./conversations/[convo_type, message]
import crypto
import identity import identity
import proto_types
import types import types
type ConvoId = string type ConvoId = string

View File

@ -7,7 +7,6 @@ import
libp2p/peerid, libp2p/peerid,
std/random, std/random,
stew/byteutils, stew/byteutils,
std/sequtils,
strformat, strformat,
waku/[ waku/[
common/logging, common/logging,
@ -20,7 +19,7 @@ import
waku_filter_v2/client, waku_filter_v2/client,
] ]
import ../utils, ../proto_types import ../proto_types
logScope: logScope:
topics = "chat waku" topics = "chat waku"

View File

@ -1,8 +1,6 @@
import crypto import crypto
import utils
import results import results
import crypto
type type

View File

@ -11,8 +11,7 @@ import
crypto, crypto,
delivery/waku_client, delivery/waku_client,
proto_types, proto_types,
types, types
utils
logScope: logScope:
topics = "chat inbox" topics = "chat inbox"

View File

@ -1,5 +1,4 @@
import base64 import base64
import chronicles
import chronos import chronos
import strformat import strformat
import strutils import strutils

View File

@ -1,5 +1,5 @@
import waku/waku_core import waku/waku_core
import std/[macros, random, times] import std/[macros, times]
import blake2 import blake2
import strutils import strutils

View File

@ -4,7 +4,6 @@
import protobuf_serialization # This import is needed or th macro will not work import protobuf_serialization # This import is needed or th macro will not work
import protobuf_serialization/proto_parser import protobuf_serialization/proto_parser
import results import results
import std/random
import strformat import strformat
import ../chat_sdk/proto_types import ../chat_sdk/proto_types

View File

@ -1,7 +1,6 @@
import naxolotl/[ import naxolotl/[
naxolotl, naxolotl,
curve25519, curve25519,
types,
errors errors
] ]

View File

@ -1,8 +1,7 @@
import nim_chacha20_poly1305/[common, chacha20_poly1305, streaming, helpers, poly1305] import nim_chacha20_poly1305/[common, chacha20_poly1305, poly1305]
import std/[sysrand] import std/[sysrand]
import results import results
import strformat import strformat
import chronicles
import types import types
import errors import errors

View File

@ -1,7 +1,7 @@
import curve25519 import curve25519
import results import results
import chronicles import chronicles
import nim_chacha20_poly1305/[common,helpers] import nim_chacha20_poly1305/common
import strformat import strformat
import strutils import strutils
import sequtils import sequtils