diff --git a/websocket/client.go b/websocket/client.go index 176c1a8..8aea1f7 100644 --- a/websocket/client.go +++ b/websocket/client.go @@ -98,6 +98,10 @@ func NewClient(clientType string, ID, secret string, endpoint string, pingInterv return client, nil } +func (c *Client) GetConfig() *Config { + return c.config +} + // Connect establishes the WebSocket connection func (c *Client) Connect() error { go c.connectWithRetry()