rename ws to websock

This commit is contained in:
jangko 2021-06-27 13:41:21 +07:00
parent 62becee070
commit 809172abe4
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
3 changed files with 6 additions and 7 deletions

View File

@ -11,9 +11,8 @@ requires "nim >= 1.2.0",
"stint",
"chronos",
"httputils",
"chronicles",
"https://github.com/status-im/nim-ws",
"chronicles",
"chronicles#ba2817f1",
"https://github.com/status-im/nim-websock",
"json_serialization"
proc getLang(): string =

View File

@ -1,7 +1,7 @@
import
std/[strtabs, tables, uri, strutils],
pkg/[chronos, ws/ws, chronicles],
ws/extensions/compression/deflate,
pkg/[chronos, websock/websock, chronicles],
websock/extensions/compression/deflate,
stew/byteutils,
../client

View File

@ -1,6 +1,6 @@
import
chronicles, httputils, chronos, ws/ws,
ws/extensions/compression/deflate,
chronicles, httputils, chronos, websock/websock,
websock/extensions/compression/deflate,
stew/byteutils,
".."/[errors, server]