constellation-api/CH.CryptoStats.CoinGecko/CoinGecko.cs

24 lines
678 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.Json;
using System.Threading.Tasks;
using CH.CryptoStats.Abstractions;
namespace CH.CryptoStats.CoinGecko;
public class CoinGecko : ICryptoStats
{
//https://docs.coingecko.com/reference/coins-id
public Task<Abstractions.CryptoStats> GetCryptoStatsAsync(string cryptoName, string currency, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
public Task<Abstractions.CryptoStats> ParseCryptoStats(JsonDocument jsonDocument, string currency, CancellationToken cancellationToken)
{
throw new NotImplementedException();
}
}