Blazor & WASM in combination to get statistics from Spotify API for performing the song analysis. With separate microservices for auth, Spotify, user data tracking, and application, connected through gRPC with Polly.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

IStatsClientService.cs 335B

123456789101112
  1. using GrpcShared.DTO;
  2. using GrpcShared.DTO.TopItem;
  3. using GrpcShared.DTO.Track;
  4. namespace NemAnBlazor.Services.Interfaces
  5. {
  6. public interface IStatsClientService
  7. {
  8. Task<CurrentTrackResponse> GetCurrentlyPlayingTrack(SessionMessage message);
  9. Task<TopItemResponse> GetTopItems(TopItemRequest request);
  10. }
  11. }