RhSolutions-AddIn/OcrClient/Services/OcrClient.cs

19 lines
354 B
C#
Raw Normal View History

2024-11-09 22:34:58 +03:00
using OcrClient.Models;
using System.Net.Http;
namespace OcrClient.Services;
public class YandexOcrClient : IOcrClient
{
private readonly HttpClient _httpClient;
public YandexOcrClient(HttpClient httpClient)
{
_httpClient = httpClient;
}
public Task<OcrResponse> ProcessImage(string base64Image)
{
throw new NotImplementedException();
}
}