aboutsummaryrefslogtreecommitdiff
path: root/OcrClient/Services/OcrClient.cs
blob: e4cfef3a4f3ed9d6ae33f9092cf5c050cf24dfe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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();
	}
}