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