Created
May 23, 2021 13:06
-
-
Save devmobasa/0ac83fa8cb28a2703415234e6395fbd6 to your computer and use it in GitHub Desktop.
https://codingblast.com/connect4-live-game-signalr-blazor/ - SignalR Connect4 Blazor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.UseEndpoints(endpoints = > | |
{ | |
endpoints.MapControllers(); | |
endpoints.MapBlazorHub(); | |
endpoints.MapHub < Connect4Hub > ("/connect4"); | |
endpoints.MapFallbackToPage("/_Host"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment