diff --git a/src/nitter.nim b/src/nitter.nim index 746e385..1f56ed9 100644 --- a/src/nitter.nim +++ b/src/nitter.nim @@ -7,8 +7,8 @@ from os import getEnv import jester import types, config, prefs, formatters, redis_cache, http_pool, auth, query -import views/[general, about, search, profile, homepage] -import karax/[karaxdsl, vdom] +import views/[general, about, search, homepage] +import karax/[vdom] import routes/[ preferences, timeline, status, media, search, rss, list, debug, unsupported, embed, resolver, router_utils, follow] diff --git a/src/parserutils.nim b/src/parserutils.nim index 1920565..f40082c 100644 --- a/src/parserutils.nim +++ b/src/parserutils.nim @@ -1,5 +1,5 @@ # SPDX-License-Identifier: AGPL-3.0-only -import std/[times, macros, htmlgen, options, algorithm, re, logging] +import std/[times, macros, htmlgen, options, algorithm, re] import std/strutils except escape import std/unicode except strip from xmltree import escape diff --git a/src/routes/follow.nim b/src/routes/follow.nim index fe6bee8..06202da 100644 --- a/src/routes/follow.nim +++ b/src/routes/follow.nim @@ -1,5 +1,5 @@ # SPDX-License-Identifier: AGPL-3.0-only -import strutils, sequtils, uri +import strutils, sequtils import jester import router_utils import ".."/[types] diff --git a/src/views/tweet.nim b/src/views/tweet.nim index 067102f..5e8c166 100644 --- a/src/views/tweet.nim +++ b/src/views/tweet.nim @@ -1,5 +1,5 @@ # SPDX-License-Identifier: AGPL-3.0-only -import strutils, sequtils, strformat, options, algorithm, uri +import strutils, sequtils, strformat, options, algorithm import karax/[karaxdsl, vdom, vstyles] from jester import Request