mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-04 07:03:13 +00:00
remove unused imports
This commit is contained in:
parent
27f748399f
commit
1ca9c19113
@ -16,7 +16,6 @@ import # Foreign
|
|||||||
types
|
types
|
||||||
|
|
||||||
import #local
|
import #local
|
||||||
conversation_store,
|
|
||||||
conversations,
|
conversations,
|
||||||
conversations/convo_impl,
|
conversations/convo_impl,
|
||||||
crypto,
|
crypto,
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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"
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
|
|
||||||
import crypto
|
import crypto
|
||||||
import utils
|
|
||||||
import results
|
import results
|
||||||
import crypto
|
|
||||||
|
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|||||||
@ -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"
|
||||||
|
|||||||
@ -1,5 +1,4 @@
|
|||||||
import base64
|
import base64
|
||||||
import chronicles
|
|
||||||
import chronos
|
import chronos
|
||||||
import strformat
|
import strformat
|
||||||
import strutils
|
import strutils
|
||||||
|
|||||||
@ -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
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
import naxolotl/[
|
import naxolotl/[
|
||||||
naxolotl,
|
naxolotl,
|
||||||
curve25519,
|
curve25519,
|
||||||
types,
|
|
||||||
errors
|
errors
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user