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, 0 insertions, 19 deletions
diff --git a/OcrClient/Services/OcrClient.cs b/OcrClient/Services/OcrClient.cs
deleted file mode 100644
index e4cfef3..0000000
--- a/OcrClient/Services/OcrClient.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-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