diff options
author | bptato <nincsnevem662@gmail.com> | 2023-08-14 21:38:49 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-08-14 21:38:49 +0200 |
commit | 6b0b7ccfc571b1df8bfbce26703f64e89861f779 (patch) | |
tree | 68e87d16b5285b29ab8ecdbbf887821cc1e0b67e /src/io/response.nim | |
parent | 5cca932e90387781cfa14ae77d587c25c2e0dcf4 (diff) | |
download | chawan-6b0b7ccfc571b1df8bfbce26703f64e89861f779.tar.gz |
Move charsets into chakasu
Operation "modularize Chawan somewhat" part 1
Diffstat (limited to 'src/io/response.nim')
-rw-r--r-- | src/io/response.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/io/response.nim b/src/io/response.nim index dedddbcd..38f6b397 100644 --- a/src/io/response.nim +++ b/src/io/response.nim @@ -1,13 +1,14 @@ import streams import bindings/quickjs -import data/charset import io/headers import io/promise import io/request import js/javascript import types/url +import chakasu/charset + type Response* = ref object res*: int |