mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-22 17:28:43 +00:00
10 lines
206 B
C#
10 lines
206 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace server.Controllers {
|
|
public class PingController : Controller {
|
|
[HttpGet]
|
|
public string Get() {
|
|
return "Pong";
|
|
}
|
|
}
|
|
} |