mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 09:18:08 +00:00
11 lines
236 B
C#
11 lines
236 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace PodNoms.Api.Controllers {
|
|
[Route("[controller]")]
|
|
public class PingController : Controller {
|
|
[HttpGet]
|
|
public string Get() {
|
|
return "Pong";
|
|
}
|
|
}
|
|
} |