aboutsummaryrefslogtreecommitdiff
path: root/OcrClient/Services/OcrClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OcrClient/Services/OcrClient.cs')
-rw-r--r--OcrClient/Services/OcrClient.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/OcrClient/Services/OcrClient.cs b/OcrClient/Services/OcrClient.cs
new file mode 100644
index 0000000..e4cfef3
--- /dev/null
+++ b/OcrClient/Services/OcrClient.cs
@@ -0,0 +1,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();
+ }
+} \ No newline at end of file