Files
podnoms/server/Controllers/ServerEventsController.cs
2018-03-21 11:45:05 +00:00

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!";
}
}
}