about summary refs log tree commit diff stats
path: root/src/html
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2024-01-07 17:39:33 +0100
committerbptato <nincsnevem662@gmail.com>2024-01-07 17:39:33 +0100
commit10a02b2ae2613b383453ba99318330560e9371ac (patch)
treec14e3e5e477d257aa7141483c09a52568e5a9458 /src/html
parent22f127b1124608dc7bcc13165e382bfbaa803764 (diff)
downloadchawan-10a02b2ae2613b383453ba99318330560e9371ac.tar.gz
Use std/* imports everywhere
Diffstat (limited to 'src/html')
-rw-r--r--src/html/chadombuilder.nim6
-rw-r--r--src/html/enums.nim4
-rw-r--r--src/html/event.nim4
3 files changed, 7 insertions, 7 deletions
diff --git a/src/html/chadombuilder.nim b/src/html/chadombuilder.nim
index 06d411dc..fa3b761d 100644
--- a/src/html/chadombuilder.nim
+++ b/src/html/chadombuilder.nim
@@ -1,6 +1,6 @@
-import deques
-import options
-import streams
+import std/deques
+import std/options
+import std/streams
 
 import html/dom
 import html/enums
diff --git a/src/html/enums.nim b/src/html/enums.nim
index 5cc4e466..e990495e 100644
--- a/src/html/enums.nim
+++ b/src/html/enums.nim
@@ -1,5 +1,5 @@
-import strutils
-import tables
+import std/strutils
+import std/tables
 
 import utils/twtstr
 
diff --git a/src/html/event.nim b/src/html/event.nim
index 47195b82..8a5c6edc 100644
--- a/src/html/event.nim
+++ b/src/html/event.nim
@@ -1,5 +1,5 @@
-import math
-import times
+import std/math
+import std/times
 
 import bindings/quickjs
 import js/dict