mirror of
https://github.com/status-im/nim-json-rpc.git
synced 2025-02-24 18:28:10 +00:00
Make client config public (#113)
This commit is contained in:
parent
eda5e8554f
commit
a1715e33ac
@ -10,14 +10,14 @@ type
|
||||
Http,
|
||||
WebSocket
|
||||
|
||||
ClientConfig = object
|
||||
case kind: ClientKind
|
||||
ClientConfig* = object
|
||||
case kind*: ClientKind
|
||||
of Http:
|
||||
httpUri: string
|
||||
httpUri*: string
|
||||
of WebSocket:
|
||||
wsUri: string
|
||||
compression: bool
|
||||
flags: set[TLSFlags]
|
||||
wsUri*: string
|
||||
compression*: bool
|
||||
flags*: set[TLSFlags]
|
||||
|
||||
RpcProxy* = ref object of RootRef
|
||||
rpcHttpServer*: RpcHttpServer
|
||||
|
Loading…
x
Reference in New Issue
Block a user