2023-03-14 02:31:42 -05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
2024-08-04 18:44:33 -05:00
|
|
|
|
namespace LANCommander.Server.Controllers.Api
|
2023-03-14 02:31:42 -05:00
|
|
|
|
{
|
2023-03-14 02:35:39 -05:00
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
|
[ApiController]
|
|
|
|
|
|
public class PingController : ControllerBase
|
2023-03-14 02:31:42 -05:00
|
|
|
|
{
|
2023-03-14 02:35:39 -05:00
|
|
|
|
[HttpGet]
|
2023-03-14 02:31:42 -05:00
|
|
|
|
public IActionResult Index()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Ok("Pong!");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|