mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-09 18:14:16 +00:00
10 lines
209 B
C#
10 lines
209 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PodNoms.Api.Controllers {
|
|
[Route("/sse")]
|
|
public class ServerEventsController : Controller {
|
|
public async Task<
|
|
}
|
|
}
|