Removing unused import, some tidying
This commit is contained in:
parent
cdcd5204e3
commit
66f9c63f01
|
@ -1,5 +1,5 @@
|
|||
import asyncnet, asyncdispatch, tables, json, oids, macros
|
||||
import ../jsonconverters
|
||||
import asyncnet, asyncdispatch, tables, json, macros
|
||||
import ".." / [jsonconverters, jsonmarshal]
|
||||
|
||||
type
|
||||
RpcClient* = ref object
|
||||
|
@ -90,8 +90,6 @@ proc connect*(self: RpcClient, address: string, port: Port) {.async.} =
|
|||
self.port = port
|
||||
asyncCheck processData(self)
|
||||
|
||||
import ../ jsonmarshal
|
||||
|
||||
proc createRpcProc(procName, parameters, callBody: NimNode): NimNode =
|
||||
# parameters come as a tree
|
||||
var paramList = newSeq[NimNode]()
|
||||
|
|
Loading…
Reference in New Issue