using Microsoft.AspNetCore.Mvc;
namespace $safeprojectname$.Controllers
{
///
/// Example controller
///
[ApiController]
[Route("[controller]")]
public class ExampleController : ControllerBase
{
///
/// Just example endpoing
///
///
[HttpGet("ping")]
[Produces("application/json")]
[ProducesResponseType(200)]
public async Task Pong()
{
return Ok("Pong!");
}
}
}