14 lines
330 B
14 lines
330 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SDKAdapter.WebSockets.Market
|
|
{
|
|
public class GateIOSpotMarketWebSocketClient : SpotMarketWebSocketClient
|
|
{
|
|
public GateIOSpotMarketWebSocketClient(string symbol, NLog.ILogger logger) : base(symbol, logger)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|