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.

IStatsService.cs 348B

12345678910111213141516
  1. using GrpcShared.DTO.Track;
  2. using ProtoBuf.Grpc.Configuration;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace GrpcShared.Interfaces
  9. {
  10. [Service]
  11. public interface IStatsService
  12. {
  13. Task<TrackResponse> GetCurrentlyPlayingTrack(string token);
  14. }
  15. }