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.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }