diff options
author | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-08-07 12:16:29 +0200 |
commit | fa4560f63e38886b2b7541642b9aa1656dc40508 (patch) | |
tree | 7177fd845926e92b655306e08f4b5a8fc5156b4d /src/main.nim | |
parent | ab963e4efe0871a6bdedf2f56fcfb9ed15636d12 (diff) | |
download | chawan-fa4560f63e38886b2b7541642b9aa1656dc40508.tar.gz |
Reorganize imports
Diffstat (limited to 'src/main.nim')
-rw-r--r-- | src/main.nim | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/main.nim b/src/main.nim index fe7eeb99..6f940b50 100644 --- a/src/main.nim +++ b/src/main.nim @@ -3,15 +3,11 @@ import uri import os import streams -import utils/eprint - -import html/htmlparser +import html/parser import html/dom - import io/buffer import io/term - -import config +import config/config let clientInstance = newHttpClient() proc loadRemotePage*(url: string): string = |