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.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

index.html 705B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  6. <title>NemAnCore</title>
  7. <base href="/" />
  8. <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
  9. <link href="css/app.css" rel="stylesheet" />
  10. <link href="NemAnCore.styles.css" rel="stylesheet" />
  11. </head>
  12. <body>
  13. <div id="app">Loading...</div>
  14. <div id="blazor-error-ui">
  15. An unhandled error has occurred.
  16. <a href="" class="reload">Reload</a>
  17. <a class="dismiss">🗙</a>
  18. </div>
  19. <script src="_framework/blazor.webassembly.js"></script>
  20. </body>
  21. </html>