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 символов.

AuthService.cs 338B

1234567891011121314
  1. using IdentityProvider.Protos.AuthService;
  2. namespace IdentityProvider.Services
  3. {
  4. public class AuthService : AuthorizationService.AuthorizationServiceBase
  5. {
  6. private readonly ILogger<AuthService> _logger;
  7. public AuthService(ILogger<AuthService> logger)
  8. {
  9. _logger = logger;
  10. }
  11. }
  12. }