using System;
namespace CryptoExchange.Net.Interfaces
{
///
/// Client for accessing Websocket API's for different exchanges
///
public interface ICryptoSocketClient
{
///
/// Try get a client by type for the service collection
///
///
///
T TryGet(Func createFunc);
}
}