mirror of
https://github.com/yawaflua/SkinsApi.git
synced 2025-12-09 03:49:32 +02:00
16 lines
298 B
C#
16 lines
298 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace SkinsApi.Controllers.Default
|
|
{
|
|
[Route("/ping")]
|
|
[ApiController]
|
|
public class PingController : ControllerBase
|
|
{
|
|
[HttpGet]
|
|
public async Task<IActionResult> Ping()
|
|
{
|
|
return Ok("Pong");
|
|
}
|
|
}
|
|
}
|