mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-07 08:15:02 +00:00
13 lines
246 B
C#
13 lines
246 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace PodNoms.Api.Services.Hubs {
|
|
[Authorize]
|
|
public class ChatHub : Hub {
|
|
|
|
|
|
}
|
|
} |