| 123456789101112131415161718 |
- using SpotifyService.Protos;
- using Grpc.Core;
- using System.Text.Json;
- using SpotifyService.Contracts;
-
- namespace SpotifyService.Services
- {
- public class SearchService
- {
- private readonly IHttpClientFactory _httpClientFactory;
-
- public SearchService(IHttpClientFactory httpClientFactory)
- {
- _httpClientFactory = httpClientFactory;
- }
- }
- }
|