Make client config public (#113)

This commit is contained in:
KonradStaniec 2021-08-02 13:18:51 +02:00 committed by GitHub
parent eda5e8554f
commit a1715e33ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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