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