Created
January 31, 2019 00:03
-
-
Save dcomartin/b97da3d370984259c93c6dd6c4d06d4f to your computer and use it in GitHub Desktop.
This file contains 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
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.AspNetCore.SignalR; | |
namespace Practical.AspNetCore.SignalR | |
{ | |
public class AnnouncementController : Controller | |
{ | |
private IHubContext<MessageHub> _hubContext; | |
public AnnouncementController(IHubContext<MessageHub> hubContext) | |
{ | |
_hubContext = hubContext; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment