| 1234567891011121314151617181920 |
-
- using GrpcShared.DTO.Track;
- using GrpcShared.Interfaces;
-
- namespace SpotifyService.Services
- {
- public class StatsService : IStatsService
- {
- private readonly IHttpClientFactory _httpClientFactory;
-
- public StatsService(IHttpClientFactory httpClientFactory)
- {
- _httpClientFactory = httpClientFactory;
- }
- public Task<TrackResponse> GetCurrentlyPlayingTrack(string token)
- {
- return null;
- }
- }
- }
|