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,
|
Http,
|
||||||
WebSocket
|
WebSocket
|
||||||
|
|
||||||
ClientConfig = object
|
ClientConfig* = object
|
||||||
case kind: ClientKind
|
case kind*: ClientKind
|
||||||
of Http:
|
of Http:
|
||||||
httpUri: string
|
httpUri*: string
|
||||||
of WebSocket:
|
of WebSocket:
|
||||||
wsUri: string
|
wsUri*: string
|
||||||
compression: bool
|
compression*: bool
|
||||||
flags: set[TLSFlags]
|
flags*: set[TLSFlags]
|
||||||
|
|
||||||
RpcProxy* = ref object of RootRef
|
RpcProxy* = ref object of RootRef
|
||||||
rpcHttpServer*: RpcHttpServer
|
rpcHttpServer*: RpcHttpServer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user