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.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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>