aboutsummaryrefslogtreecommitdiff
path: root/VisionClient/Services
diff options
context:
space:
mode:
Diffstat (limited to 'VisionClient/Services')
-rw-r--r--VisionClient/Services/IYandexVisionClient.cs24
1 files changed, 0 insertions, 24 deletions
diff --git a/VisionClient/Services/IYandexVisionClient.cs b/VisionClient/Services/IYandexVisionClient.cs
deleted file mode 100644
index 77105be..0000000
--- a/VisionClient/Services/IYandexVisionClient.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-using VisionClient.Models;
-using System.Net.Http;
-
-namespace VisionClient.Services;
-
-public interface IYandexVisionClient
-{
- public Task<VisionResponse> ProcessImage(string base64Image);
-}
-
-public class YandexVisionClient : IYandexVisionClient
-{
- private readonly HttpClient _httpClient;
-
- public YandexVisionClient(HttpClient httpClient)
- {
- _httpClient = httpClient;
- }
-
- public Task<VisionResponse> ProcessImage(string base64Image)
- {
- throw new NotImplementedException();
- }
-} \ No newline at end of file