mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2025-06-08 08:26:20 +00:00
10 lines
190 B
C#
10 lines
190 B
C#
using CryptoExchange.Net.Logging;
|
|
|
|
namespace CryptoExchange.Net.Interfaces
|
|
{
|
|
public interface IWebsocketFactory
|
|
{
|
|
IWebsocket CreateWebsocket(Log log, string url);
|
|
}
|
|
}
|