mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-02-07 08:15:02 +00:00
12 lines
257 B
C#
12 lines
257 B
C#
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PodNoms.Api.Controllers {
|
|
[Route("/sse")]
|
|
public class ServerEventsController : Controller {
|
|
public string Get(){
|
|
return "Hello Sailor!";
|
|
}
|
|
}
|
|
}
|